  /* Graduation CSS - Exclusive #780000 Color Scheme */
body {
    margin-top: 20px;
    font-family: 'Raleway', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
}

/* Section Styles */
.section {
    padding: 80px 0;
    position: relative;
}

.section-title h2 {
    font-weight: 700;
    color: #222;
    font-size: 2.5rem;
    margin: 0 0 1.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.section-title h2::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 4px;
    height: 100%;
    background-color: #780000;
}

.section-title p.lead {
    color: #666;
    font-size: 1.25rem;
}

/* Card Styles */
.card {
    border: none;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: white;
}

.info-card {
    border: 1px solid rgba(120, 0, 0, 0.1);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(120, 0, 0, 0.1);
}

.action-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(120, 0, 0, 0.05);
}

.action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(120, 0, 0, 0.15);
}

/* Icon Styles */
.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    color: white;
    background-color: #780000;
}

.icon-hover {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #780000;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    border: 1px solid #780000;
}

.icon-hover:hover {
    color: white;
    background-color: #780000;
    transform: scale(1.1);
}

/* Timeline Styles */
.timeline {
    position: relative;
    padding-left: 1.5rem;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 7px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #780000;
}

.timeline-item {
    position: relative;
    padding-bottom: 1rem;
}

.timeline-item:before {
    content: '';
    position: absolute;
    left: -22px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #780000;
}

/* Color Palette */
.color-palette {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.color-box {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.color-box:nth-child(1) { background-color: #4f2f09; }
.color-box:nth-child(2) { background-color: #780000; }
.color-box:nth-child(3) { background-color: #a77b4c; }
.color-box:nth-child(4) { background-color: #944301; }
.color-box:nth-child(5) { background-color: #692f0a; }

/* Button Styles */
.btn-primary {
    background-color: #780000;
    border-color: #780000;
    color: white;
}

.btn-primary:hover {
    background-color: #5a0000;
    border-color: #5a0000;
}

.btn-outline-primary {
    color: #780000;
    border-color: #780000;
}

.btn-outline-primary:hover {
    background-color: #780000;
    border-color: #780000;
    color: white;
}

/* Modern FAQ Styles */
.faq-section {
    background: linear-gradient(135deg, #f9f9ff 0%, #f0f4ff 100%);
}

.text-gradient {
    background: linear-gradient(90deg, #780000 0%, #c1121f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modern-accordion .accordion-item {
    transition: all 0.3s ease;
    border: none;
    background: white;
}

.modern-accordion .accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(120, 0, 0, 0.08) !important;
}

.modern-accordion .accordion-button {
    background: white;
    color: #212529;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.modern-accordion .accordion-button:not(.collapsed) {
    background: white;
    color: #780000;
    border-left: 4px solid #780000;
    box-shadow: none;
}

.modern-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.modern-accordion .accordion-button::after {
    content: '';
    position: absolute;
    right: 1.5rem;
    width: 12px;
    height: 12px;
    border-right: 2px solid #780000;
    border-bottom: 2px solid #780000;
    transform: rotate(45deg);
    transition: all 0.3s ease;
    margin-top: -4px;
}

.modern-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(-135deg);
    margin-top: 4px;
}

.modern-accordion .accordion-body {
    padding-top: 0;
}

.hover-underline {
    position: relative;
    text-decoration: none;
}

.hover-underline:after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: -1px;
    left: 0;
    background-color: #780000;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.hover-underline:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.rounded-3 {
    border-radius: 0.75rem !important;
}

/* Hero Image */
.graduation-hero {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 0.5rem;
    background-color: #780000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.graduation-hero h1 {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    font-size: 160px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);


}

/* Graduation Attire Section */
.graduation-attire {
    background-color: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.graduation-attire img {
    max-height: 100%;
    width: auto;
    object-fit: cover;
}

/* Text Styles */
.text-primary {
    color: #780000 !important;
}

/* Badge Styles */
.deadline-badge {
    background-color: #f9f9f9;
    color: #780000;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.85rem;
    display: inline-block;
    margin: 0.5rem 0;
    border: 1px solid rgba(120, 0, 0, 0.2);
}

/* Animation Styles */
.scroll-hidden {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-show {
    opacity: 1;
    transform: translateY(0);
}

.hover-shadow {
    transition: box-shadow 0.3s ease;
}

.hover-shadow:hover {
    box-shadow: 0 10px 20px rgba(120, 0, 0, 0.1) !important;
}

.transition-all {
    transition: all 0.3s ease;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .graduation-hero {
        height: 200px;
    }

    .graduation-hero h1 {
        font-size: 2rem;
    }
}

/* Keyframe Animations */
@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes textAnimation {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes borderAnimation {
    to {
        height: 100%;
    }
}
