/* DCICI Design Institute - Bootstrap Enhanced Stylesheet */
/* Color Palette based on logo: Red (#E53E3E), Blue (#2B6CB0), White (#FFFFFF) */

:root {
    /* Primary Colors from Logo - Exact Match */
    --dcici-red: #E53E3E;
    --dcici-blue: #2B6CB0;
    --dcici-white: #FFFFFF;
    --dcici-black: #1A202C;
    
    /* Light Variations for Hover Effects */
    --dcici-red-light: #F56565;
    --dcici-blue-light: #4299E1;
    --dcici-red-dark: #C53030;
    --dcici-blue-dark: #2C5282;
    
    /* Bootstrap Color Overrides */
    --bs-primary: var(--dcici-red);
    --bs-primary-rgb: 229, 62, 62;
    --bs-secondary: var(--dcici-blue);
    --bs-secondary-rgb: 43, 108, 176;
    
    /* Typography */
    --bs-font-sans-serif: 'Inter', system-ui, -apple-system, sans-serif;
    --font-heading: 'Poppins', sans-serif;
    
    /* Custom Properties */
    --border-radius-xl: 1.5rem;
    --shadow-red: 0 8px 25px rgba(229, 62, 62, 0.15);
    --shadow-blue: 0 8px 25px rgba(43, 108, 176, 0.15);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--bs-font-sans-serif);
    overflow-x: hidden;
    padding-top: 76px; /* Account for fixed navbar */
}

/* Typography Enhancements */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.text-gradient {
    color: var(--dcici-red);
    display: inline-block;
}

/* Custom Utility Classes */
.rounded-4 {
    border-radius: var(--border-radius-xl) !important;
}

.shadow-colored {
    box-shadow: var(--shadow-colored) !important;
}

.transition-smooth {
    transition: var(--transition-smooth) !important;
}

/* Custom Button Styles */
.btn-gradient-primary {
    background-color: var(--dcici-red);
    border: none;
    color: white;
    font-family: var(--font-heading);
    font-weight: 600;
    transition: var(--transition-smooth);
    border-radius: 0.75rem;
}

.btn-gradient-primary:hover {
    background-color: var(--dcici-red-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
}

.btn-gradient-primary:focus {
    background-color: var(--dcici-red-dark);
    color: white;
    box-shadow: 0 0 0 0.25rem rgba(229, 62, 62, 0.25);
}

.btn-gradient-secondary {
    background-color: var(--dcici-blue);
    border: none;
    color: white;
    font-family: var(--font-heading);
    font-weight: 600;
    transition: var(--transition-smooth);
    border-radius: 0.75rem;
}

.btn-gradient-secondary:hover {
    background-color: var(--dcici-blue-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-blue);
}

.pulse-btn {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(229, 62, 62, 0.3);
    }
    50% {
        box-shadow: 0 8px 25px rgba(229, 62, 62, 0.5);
    }
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    background: rgba(43, 108, 176, 0.8);
    opacity: 1;
}

.counter {
    font-family: var(--font-heading);
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.animate-bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translateY(0);
    }
    40%, 43% {
        transform: translateY(-10px);
    }
    70% {
        transform: translateY(-5px);
    }
    90% {
        transform: translateY(-2px);
    }
}

/* Bootstrap Enhancements */

/* Navbar Customization */
.navbar-scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dcici-black);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: var(--transition-smooth);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--dcici-red);
}

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

.dropdown-item {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.dropdown-item:hover {
    background-color: rgba(229, 62, 62, 0.1);
    color: var(--dcici-red);
}

/* Form Customization */
.form-control {
    border: 2px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-control:focus {
    border-color: var(--dcici-red);
    box-shadow: 0 0 0 0.25rem rgba(229, 62, 62, 0.25);
}

.form-floating > label {
    padding: 0.75rem 1rem;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    transform: scale(0.85) translateY(-0.75rem) translateX(0.15rem);
    color: var(--dcici-red);
}

/* Notification System */
.notification {
    z-index: 1060;
    max-width: 400px;
    min-width: 300px;
    border: none;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.notification.alert-success {
    background-color: #48BB78;
    color: white;
}

.notification.alert-danger {
    background-color: #E53E3E;
    color: white;
}

.notification.alert-warning {
    background-color: #ED8936;
    color: white;
}

.notification.alert-info {
    background-color: #4299E1;
    color: white;
}

.notification .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.75;
}

/* Card Enhancements */
.card {
    border: none;
    transition: var(--transition-smooth);
}

.card:hover {
    transform: translateY(-5px);
}

/* Stat Cards */
.stat-card {
    padding: 2rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Custom Animations */
.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Utility Classes */
.z-1 { z-index: 1; }
.z-2 { z-index: 2; }
.z-3 { z-index: 3; }

.hover-lift {
    transition: var(--transition-smooth);
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-red);
}

.text-gradient-primary {
    color: var(--dcici-red);
}

.bg-gradient-primary {
    background-color: var(--dcici-red);
}

.bg-gradient-secondary {
    background-color: var(--dcici-blue);
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    margin-bottom: 16px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.navbar {
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand .logo {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    color: #4a5568;
    padding: 8px 0;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--dcici-red);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--dcici-red);
    transition: all 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 1rem;
    padding: 20px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 10px 20px;
    color: #4a5568;
    transition: all 0.3s ease;
}

.dropdown-link:hover {
    background: #f8f9fa;
    color: var(--dcici-red);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #4a5568;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(43, 108, 176, 0.8) 0%, rgba(229, 62, 62, 0.7) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
}

.scroll-indicator span {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 10px;
    opacity: 0.8;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: white;
    margin: 0 auto;
    position: relative;
    opacity: 0.6;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
}

/* Quick Enquiry */
.quick-enquiry {
    background: #f8f9fa;
    padding: 40px 0;
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.enquiry-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.enquiry-form-wrapper h3 {
    margin-bottom: 30px;
    color: var(--dcici-red);
}

.enquiry-form {
    display: flex;
    gap: 20px;
    align-items: end;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    min-width: 200px;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--dcici-red);
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

/* Programs Section */
.programs {
    background: white;
}

.programs-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.program-card {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 400px;
}

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

.card-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(229, 62, 62, 0.9) 0%, rgba(43, 108, 176, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.program-card:hover .card-overlay {
    opacity: 1;
}

.card-content {
    text-align: center;
    color: white;
    padding: 30px;
}

.card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: white;
}

.card-content p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 25px;
}

.feature {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

/* Why DCICI Section */
.why-dcici {
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--dcici-red), var(--dcici-blue));
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--dcici-red), var(--dcici-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: #2d3748;
}

.feature-card p {
    color: #718096;
    line-height: 1.6;
}

/* Placements Ticker */
.placements-ticker {
    background: white;
    padding: 60px 0;
    overflow: hidden;
}

.placements-ticker h3 {
    text-align: center;
    margin-bottom: 40px;
    color: #2d3748;
}

.ticker-wrapper {
    overflow: hidden;
    white-space: nowrap;
}

.ticker-content {
    display: inline-flex;
    gap: 60px;
    animation: ticker 30s linear infinite;
}

.ticker-content img {
    height: 60px;
    width: auto;
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.ticker-content img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Events Highlight */
.events-highlight {
    background: #f8f9fa;
}

.events-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.event-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.event-image {
    position: relative;
    height: 200px;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--dcici-red);
    color: white;
    padding: 10px;
    border-radius: 0.75rem;
    text-align: center;
    font-weight: 600;
}

.event-date .date {
    display: block;
    font-size: 1.5rem;
    line-height: 1;
}

.event-date .month {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.event-content {
    padding: 30px;
}

.event-content h3 {
    margin-bottom: 10px;
    color: #2d3748;
}

.event-content p {
    color: #718096;
    margin-bottom: 20px;
}

.event-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #a0aec0;
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Testimonials */
.testimonials {
    background: white;
}

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

.testimonial-card {
    display: none;
    text-align: center;
    padding: 40px;
}

.testimonial-card.active {
    display: block;
}

.quote-icon {
    font-size: 3rem;
    color: var(--dcici-red);
    margin-bottom: 20px;
}

.testimonial-card p {
    font-size: 1.2rem;
    font-style: italic;
    color: #4a5568;
    margin-bottom: 30px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    color: #2d3748;
    margin-bottom: 5px;
}

.author-info span {
    color: #718096;
    font-size: 0.9rem;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.prev-btn,
.next-btn {
    background: var(--dcici-red);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.prev-btn:hover,
.next-btn:hover {
    background: var(--dcici-blue);
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--dcici-red);
}

/* Campus Gallery */
.campus-gallery {
    background: #f8f9fa;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    height: 250px;
    border-radius: 1.5rem;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    color: white;
    margin-bottom: 5px;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #1A202C;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: white;
    margin-bottom: 20px;
}

.footer-logo p {
    margin-bottom: 20px;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--dcici-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--dcici-blue);
    transform: translateY(-2px);
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--dcici-red);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
}

.contact-item i {
    color: var(--dcici-red);
    width: 20px;
}

.footer-accreditation {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid #2d3748;
    border-bottom: 1px solid #2d3748;
    margin-bottom: 30px;
}

.accreditation-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.accreditation-badges img {
    height: 60px;
    width: auto;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.accreditation-badges img:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #2d3748;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: white;
    opacity: 0.8;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    opacity: 1;
    color: var(--dcici-red);
}

/* Animations */
.pulse-animation {
    animation: pulse 2s infinite;
}

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

.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*
==============================================
UI/UX DIPLOMA PAGE STYLES (ULTRA-MODERN)
==============================================
*/

.uiux-hero-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    position: relative;
    overflow: hidden;
}

.list-unstyled-creative i {
    color: #667eea;
}

.tool-card-uiux {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.tool-card-uiux:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(102, 126, 234, 0.2);
}

.tool-card-uiux img {
    max-height: 50px;
}

.tool-card-uiux span {
    font-weight: 600;
    color: var(--dcici-black);
}

.career-card-uiux {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
}

.career-card-uiux:hover {
    transform: translateY(-5px);
    border-color: var(--dcici-red);
}

.career-card-uiux i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--dcici-red), var(--dcici-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.career-card-uiux span {
    font-weight: 600;
    color: var(--dcici-blue);
}

.game-changer-section-uiux {
    background: url('https://i.imgur.com/holographic-bg.png') no-repeat center center/cover;
    position: relative;
}

.game-changer-section-uiux::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(43, 108, 176, 0.85);
}

.game-changer-section-uiux .container {
    position: relative;
    z-index: 2;
}

.highlight-card-uiux {
    background: linear-gradient(135deg, var(--dcici-blue), var(--dcici-red));
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    height: 100%;
    color: white;
    transition: all 0.3s ease;
}

.highlight-card-uiux:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.highlight-card-uiux i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.highlight-card-uiux h5 {
    font-weight: 700;
}

.why-choose-dcici-section .why-dcici-badge {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.why-choose-dcici-section .why-dcici-badge:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.why-choose-dcici-section .why-dcici-badge i {
    font-size: 1.5rem;
    color: var(--dcici-red);
    margin-right: 1rem;
    width: 30px;
    text-align: center;
}

.why-choose-dcici-section .why-dcici-badge span {
    font-weight: 600;
    color: var(--dcici-blue);
}

.enquiry-section-uiux {
    background: #f4f7f9;
}
/*==============================================
CONTACT PAGE STYLES
==============================================*/

.contact-hero {
    background: url('https://t3.ftcdn.net/jpg/03/38/11/34/360_F_338113434_1OTf8iR1bYPskGDwvGP1pnBPPQ6bJdhB.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    padding: 120px 0;
    position: relative;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.contact-section {
    background: #f4f7f9;
}

.contact-center-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border-left: 5px solid;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

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

.contact-center-card--indore {
    border-color: var(--dcici-red);
}

.contact-center-card--chhindwara {
    border-color: var(--dcici-blue);
}

.contact-center-card__title {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dcici-black);
}

.contact-center-card a {
    color: #212529;
    text-decoration: none;
}

.contact-center-card a:hover {
    color: var(--dcici-red);
}

.contact-form-wrapper {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
/*==============================================
ABOUT US PAGE STYLES
==============================================*/

/* About Hero Section */
.about-hero {
    position: relative;
    padding: 120px 0;
    background: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1171&q=80') no-repeat center center/cover;
    background-attachment: fixed;
}

.about-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(43, 108, 176, 0.7);
    z-index: 1;
}

.about-hero__content {
    position: relative;
    z-index: 2;
    color: white;
}

.about-hero__title {
    font-size: 3.5rem;
    font-weight: 800;
}

.about-hero__subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* About Section */
.about-section__image-wrapper {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-section__image-wrapper img {
    transition: transform 0.4s ease;
}

.about-section__image-wrapper:hover img {
    transform: scale(1.05);
}

/* Mission & Vision Section */
.mission-vision-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
    transition: all 0.3s ease;
}

.mission-vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.mission-vision-card__icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--dcici-red), var(--dcici-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mission-vision-card__title {
    margin-bottom: 1rem;
    color: var(--dcici-black);
}

/* Team Section */
.team-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.team-card__image-wrapper {
    position: relative;
}

.team-card__image-wrapper img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.team-card__social {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: all 0.3s ease;
}

.team-card:hover .team-card__social {
    opacity: 1;
    bottom: 20px;
}

.team-card__social .btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    color: white;
}

.team-card__social .btn:hover {
    background: var(--dcici-red);
}

.team-card__content {
    padding: 1.5rem;
}

.team-card__name {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: var(--dcici-black);
}

.team-card__designation {
    color: var(--dcici-red);
    font-weight: 500;
}

/*==============================================
EVENTS PAGE STYLES
==============================================*/

.events-hero {
    background: url('https://images.unsplash.com/photo-1517486808906-6ca8b3f04846?auto=format&fit=crop&w=1974&q=80') no-repeat center center/cover;
    padding: 120px 0;
    position: relative;
}

.events-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.image-item {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.image-item:hover img {
    transform: scale(1.1);
}

.image-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.image-item:hover .overlay {
    transform: translateY(0);
}

.image-item .overlay p {
    margin: 0;
    font-weight: 600;
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1050;
    backdrop-filter: blur(5px);
}

.lightbox__image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 0.5rem;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
}

.lightbox__close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2.5rem;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lightbox__close:hover {
    color: var(--dcici-red);
}

.lightbox__prev, .lightbox__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.5rem;
    color: white;
    cursor: pointer;
    padding: 1rem;
    transition: all 0.2s ease;
    user-select: none;
}

.lightbox__prev:hover, .lightbox__next:hover {
    background: rgba(255, 255, 255, 0.1);
}

.lightbox__prev {
    left: 20px;
}

.lightbox__next {
    right: 20px;
}

.lightbox__caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    text-align: center;
}

/*==============================================
PLACEMENTS PAGE STYLES
==============================================*/

.placements-hero {
    background: url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7?auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
    padding: 120px 0;
    position: relative;
}

.placements-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.placement-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    aspect-ratio: 3 / 4;
}

.placement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.placement-card__image {
    width: 100%;
    height: 100%;
 
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.placement-card:hover .placement-card__image {
    transform: scale(1.1);
}

.placement-card__details {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.placement-card__name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.placement-card__company {
    font-family: var(--bs-font-sans-serif);
    font-weight: 500;
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
}

.placement-card__company::before {
    content: 'Placed at ';
    font-weight: 300;
}