/* Global Styles */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f8f9fa;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    padding-top: 76px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

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

/* Hero Section */
.hero-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    overflow: hidden;
}

.hero-subtitle {
    display: inline-block;
    font-size: 1.2rem;
    color: #007bff;
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content .lead {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}

.hero-buttons .btn-outline-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

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

.hero-shapes .shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.hero-shapes .shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
}

.hero-shapes .shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
}

.hero-shapes .shape-3 {
    width: 150px;
    height: 150px;
    bottom: 50%;
    right: 10%;
}

/* Stats Card */
.stats-card {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: flex;
    gap: 2rem;
}

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

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #007bff;
}

.stat-text {
    font-size: 0.9rem;
    color: #6c757d;
}

/* Service Features */
.service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
}

.service-features li i {
    color: #007bff;
    margin-right: 0.8rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content .lead {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-content .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.cta-content .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Animations */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content .lead {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stats-card {
        position: relative;
        bottom: 0;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content .lead {
        font-size: 1.1rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 1rem 0;
    }
    
    .hero-buttons .btn-outline-light {
        margin-left: 0 !important;
    }
    
    .experience-badge {
        right: 0;
    }
    
    .stats-card {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Team Cards */
.team-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 30px;
}

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    transition: transform 0.3s ease;
}

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

.team-info {
    padding: 20px;
}

.team-info h3 {
    margin-bottom: 5px;
}

.team-info .position {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

/* Contact Form */
.contact-form-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-info-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-right: 15px;
    margin-top: 5px;
}

/* Testimonials */
.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.3s ease;
}

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

.quote-icon {
    color: #007bff;
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.2;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

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

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

.testimonial-author h5 {
    margin: 0;
    color: #2c3e50;
}

.testimonial-author p {
    margin: 0;
    color: #6c757d;
    font-size: 0.9rem;
}

/* Buttons */
.btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    padding: 0.75rem 2rem;
}

.btn-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Footer */
footer {
    background-color: var(--primary-color);
}

footer h5 {
    color: white;
    margin-bottom: 20px;
}

footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--secondary-color) !important;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: background 0.3s ease;
}

.social-icons a:hover {
    background: var(--secondary-color);
}

/* Consultation Form */
.consultation-form-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.consultation-form-card h3 {
    color: var(--primary-color);
    margin-bottom: 30px;
}

/* Benefit Cards */
.benefit-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.benefit-card i {
    color: var(--secondary-color);
}

/* Process Steps */
.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.process-steps:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--secondary-color);
    transform: translateY(-50%);
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: bold;
}

/* Responsive Design for Process Steps */
@media (max-width: 768px) {
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-steps:before {
        display: none;
    }
    
    .process-step {
        margin-bottom: 20px;
        width: 100%;
        max-width: 300px;
    }
}

/* Vision & Mission Cards */
.vision-card, .mission-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.vision-card i, .mission-card i {
    color: var(--secondary-color);
}

/* Expertise Cards */
.expertise-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

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

.expertise-card i {
    color: var(--secondary-color);
}

/* Leadership Card */
.leadership-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.leadership-card img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border: 5px solid var(--secondary-color);
}

.leadership-details {
    list-style: none;
    padding: 0;
}

.leadership-details li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.leadership-details li:before {
    content: '✓';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
}

/* Client Categories */
.client-category {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.client-category h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.client-category ul {
    list-style: none;
    padding: 0;
}

.client-category ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.client-category ul li:before {
    content: '•';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .leadership-card img {
        width: 150px;
        height: 150px;
        margin-bottom: 20px;
    }
    
    .leadership-details {
        text-align: center;
    }
    
    .client-category {
        margin-bottom: 30px;
    }
}

/* Resources Page Styles */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/resources-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
}

.resource-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

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

.resource-date {
    background: var(--primary-color);
    color: white;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    margin-right: 20px;
    min-width: 80px;
}

.resource-date .day {
    font-size: 24px;
    font-weight: bold;
    display: block;
}

.resource-date .month {
    font-size: 14px;
    text-transform: uppercase;
}

.resource-content {
    flex: 1;
}

.resource-content h4 {
    margin-bottom: 10px;
    color: var(--dark-color);
}

.presentation-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.presentation-thumbnail {
    height: 200px;
    overflow: hidden;
}

.presentation-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.presentation-content {
    padding: 20px;
}

.presentation-content h4 {
    margin-bottom: 10px;
    color: var(--dark-color);
}

.article-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 25px;
    transition: transform 0.3s ease;
}

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

.article-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--secondary-color);
}

.article-card h4 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .resource-card {
        flex-direction: column;
        text-align: center;
    }

    .resource-date {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .presentation-thumbnail {
        height: 150px;
    }
}

/* About Page Styles */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: #fff;
    position: relative;
}

.company-overview {
    background: #fff;
}

.overview-content {
    padding-right: 2rem;
}

.contact-info-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--dark-color);
}

.contact-item p {
    margin: 0;
    color: var(--text-color);
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--secondary-color);
}

.vision-mission {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.vision-card, .mission-card {
    background: #fff;
    border-radius: 15px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.vision-card:hover, .mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.vision-card .icon-wrapper, .mission-card .icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.vision-card .icon-wrapper i, .mission-card .icon-wrapper i {
    font-size: 2rem;
    color: #fff;
}

.vision-card h3, .mission-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.core-expertise {
    background: #fff;
}

.expertise-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.expertise-card .icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.expertise-card .icon-wrapper i {
    font-size: 1.75rem;
    color: #fff;
}

.expertise-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.leadership {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.leadership-card {
    background: #fff;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 2rem;
}

.profile-image {
    flex-shrink: 0;
}

.profile-image img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.profile-content {
    flex-grow: 1;
}

.profile-content h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.qualifications {
    margin-top: 1.5rem;
}

.qualification-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.qualification-item i {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-right: 1rem;
    width: 24px;
    text-align: center;
}

.clients {
    background: #fff;
}

.client-category {
    margin-bottom: 4rem;
}

.category-header {
    text-align: center;
    margin-bottom: 2rem;
}

.category-header .icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.category-header .icon-wrapper i {
    font-size: 1.75rem;
    color: #fff;
}

.category-header h3 {
    font-size: 1.75rem;
    color: var(--dark-color);
}

.client-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.client-logo {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.client-logo i {
    font-size: 1.75rem;
    color: #fff;
}

.client-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.client-card .text-muted {
    font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .overview-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .leadership-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .profile-image {
        margin-bottom: 1.5rem;
    }
    
    .qualification-item {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .vision-card, .mission-card {
        margin-bottom: 2rem;
    }
    
    .expertise-card {
        margin-bottom: 2rem;
    }
    
    .client-card {
        margin-bottom: 2rem;
    }
}

/* Clients Section Styles */
.client-category {
    margin-bottom: 3rem;
}

.category-header {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.category-header i {
    color: #3498db;
    margin-bottom: 1rem;
}

.client-card {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.client-logo {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 50%;
}

.client-logo i {
    font-size: 1.5rem;
    color: #3498db;
}

.client-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.client-card p {
    font-size: 0.9rem;
    color: #6c757d;
}

.icmai-association {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    padding: 3rem;
    border-radius: 15px;
    color: white;
    margin-top: 4rem;
}

.association-badge i {
    color: #f1c40f;
}

.association-badge h3 {
    margin-bottom: 1rem;
}

.association-badge p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.association-badge .lead {
    font-size: 1.2rem;
    font-weight: 500;
}

/* Promoter Profile Styles */
.promoter-profile {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.profile-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.profile-info h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.designation {
    color: #3498db;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.qualifications, .memberships {
    margin-top: 1.5rem;
}

.qualifications h4, .memberships h4 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.qualifications ul, .memberships ul {
    list-style: none;
    padding-left: 0;
}

.qualifications li, .memberships li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.qualifications li:before, .memberships li:before {
    content: "•";
    color: #3498db;
    position: absolute;
    left: 0;
}

/* Expertise Areas */
.expertise-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease;
    height: 100%;
}

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

.expertise-card i {
    font-size: 2rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.expertise-card span {
    color: #2c3e50;
    font-weight: 500;
}

/* Practice Cards */
.practice-card {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

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

.practice-card i {
    font-size: 2rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.practice-card h4 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.practice-card p {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Training Partners */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.partner-logo {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.partner-logo i {
    font-size: 2rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.partner-logo span {
    color: #2c3e50;
    font-weight: 500;
}

/* Insolvency Cases */
.cases-list {
    margin-top: 1.5rem;
}

.case-item {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.case-item:hover {
    transform: translateX(10px);
}

.case-item i {
    font-size: 2rem;
    color: #3498db;
    margin-right: 1.5rem;
}

.case-item h5 {
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.case-item p {
    color: #6c757d;
    margin-bottom: 0;
}

/* Section Headers */
.promoter-details h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #3498db;
    display: inline-block;
}

/* Services Page Styles */
.service-categories {
    padding: 4rem 0;
}

.service-category-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
}

.service-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-category-card .icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-category-card .icon-wrapper i {
    font-size: 2rem;
    color: #fff;
}

.service-category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-category-card p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.detailed-services {
    background: #f8f9fa;
}

.service-section {
    padding: 3rem 0;
    border-bottom: 1px solid #eee;
}

.service-section:last-child {
    border-bottom: none;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
}

.service-feature {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

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

.service-feature i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.service-feature h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.service-feature p {
    color: var(--text-color);
    margin: 0;
}

.why-choose-us {
    background: #fff;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.feature-card p {
    color: var(--text-color);
    margin: 0;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    text-align: center;
    padding: 5rem 0;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.cta-content .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    background: #fff;
    color: var(--primary-color);
    border: none;
    transition: all 0.3s ease;
}

.cta-content .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .service-category-card {
        margin-bottom: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .service-feature {
        margin-bottom: 1rem;
    }
    
    .feature-card {
        margin-bottom: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

/* Section Subtitles */
.section-subtitle {
    color: #007bff;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

/* Enhanced Service Cards */
.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.3s ease;
}

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

.service-card .icon-wrapper {
    width: 70px;
    height: 70px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-card .icon-wrapper i {
    color: white;
    font-size: 1.8rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
}

.service-features li i {
    color: #007bff;
    margin-right: 0.8rem;
}

.service-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.service-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: #0056b3;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Why Choose Us */
.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

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

.feature-card .icon-wrapper {
    width: 60px;
    height: 60px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-card .icon-wrapper i {
    color: white;
    font-size: 1.5rem;
}

.feature-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* Testimonials */
.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.3s ease;
}

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

.quote-icon {
    color: #007bff;
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.2;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

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

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

.testimonial-author h5 {
    margin: 0;
    color: #2c3e50;
}

.testimonial-author p {
    margin: 0;
    color: #6c757d;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content .lead {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-content .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.cta-content .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}

/* About Section */
.about-section {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.section-subtitle {
    display: inline-block;
    color: #007bff;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.about-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-item i {
    color: #007bff;
    font-size: 1.2rem;
    margin-right: 1rem;
}

.about-image {
    position: relative;
}

.experience-badge {
    position: absolute;
    top: 20px;
    right: -20px;
    background: #007bff;
    color: white;
    padding: 1.5rem;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,123,255,0.3);
}

.experience-badge .number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Contact Page Styles */
.contact-section {
    background-color: #f8f9fa;
}

.contact-form-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    height: 100%;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header i {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 1rem;
}

.form-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.form-header p {
    color: #6c757d;
    margin-bottom: 0;
}

.contact-form .form-floating {
    margin-bottom: 1.5rem;
}

.contact-form .form-control {
    border: 1px solid #dee2e6;
    padding: 1rem 0.75rem;
    height: calc(3.5rem + 2px);
    line-height: 1.25;
}

.contact-form .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.25rem rgba(0,123,255,0.25);
}

.contact-form textarea.form-control {
    height: auto;
    min-height: 120px;
}

.contact-form .btn-primary {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,123,255,0.3);
}

.contact-info-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    height: 100%;
}

.info-header {
    text-align: center;
    margin-bottom: 2rem;
}

.info-header i {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 1rem;
}

.info-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.info-header p {
    color: #6c757d;
    margin-bottom: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-item .icon-wrapper {
    width: 50px;
    height: 50px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item .icon-wrapper i {
    color: white;
    font-size: 1.2rem;
}

.contact-item .content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.contact-item .content p {
    margin: 0;
    color: #6c757d;
}

.contact-item .content a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item .content a:hover {
    color: #007bff;
}

/* Map Section */
.map-section {
    background: #f8f9fa;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Additional Info Cards */
.additional-info .info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.additional-info .info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.additional-info .icon-wrapper {
    width: 70px;
    height: 70px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.additional-info .icon-wrapper i {
    color: white;
    font-size: 1.8rem;
}

.additional-info .info-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.additional-info .info-card p {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.additional-info .btn-primary {
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.additional-info .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,123,255,0.3);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .contact-form-card,
    .contact-info-card {
        margin-bottom: 2rem;
    }
    
    .contact-item {
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .contact-form-card,
    .contact-info-card {
        padding: 1.5rem;
    }
    
    .form-header i,
    .info-header i {
        font-size: 2rem;
    }
    
    .form-header h3,
    .info-header h3 {
        font-size: 1.5rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-item .icon-wrapper {
        margin: 0 auto 1rem;
    }
}

/* Statistics Section */
.statistics-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern.png');
    opacity: 0.1;
    pointer-events: none;
}

.stat-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,123,255,0.1) 0%, rgba(0,123,255,0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.stat-icon i {
    color: white;
    font-size: 2rem;
}

.stat-content {
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #007bff, #00bcd4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.stat-description {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.stat-progress {
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    overflow: hidden;
}

.stat-progress .progress-bar {
    height: 100%;
    background: linear-gradient(45deg, #007bff, #00bcd4);
    border-radius: 3px;
    transition: width 1.5s ease-in-out;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .stat-card {
        padding: 2rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .stat-label {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
    }
    
    .stat-icon i {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1.2rem;
    }
    
    .stat-description {
        font-size: 1rem;
    }
}

/* Image Gallery Section */
.image-gallery-section {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 300px;
}

.gallery-item.large {
    height: 400px;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0) 100%);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.gallery-content {
    transform: translateY(20px);
    transition: all 0.3s ease;
    color: white;
}

.gallery-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease 0.1s;
}

.gallery-content p {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease 0.2s;
}

/* Hover Effects */
.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

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

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

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

.gallery-item:hover .gallery-content h3,
.gallery-item:hover .gallery-content p {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .gallery-item {
        height: 250px;
    }
    
    .gallery-item.large {
        height: 300px;
    }
    
    .gallery-content h3 {
        font-size: 1.3rem;
    }
    
    .gallery-content p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .gallery-item {
        height: 200px;
        margin-bottom: 1rem;
    }
    
    .gallery-item.large {
        height: 250px;
    }
    
    .gallery-content h3 {
        font-size: 1.2rem;
    }
    
    .gallery-content p {
        font-size: 0.9rem;
    }
}

/* Director Showcase Section Styles */
.director-showcase {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

/* Marquee Styles */
.marquee-wrapper {
    width: 100%;
    max-width: 1000px;
    height: 500px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.marquee-container {
    display: flex;
    position: absolute;
    animation: scrollLeft 30s linear infinite;
}

.marquee-image {
    width: 1000px;
    height: 500px;
    object-fit: cover;
    margin-right: 30px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.marquee-image:hover {
    transform: scale(1.02);
}

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

/* Gallery Styles */
.gallery-section {
    padding: 2rem 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

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

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

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

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

.gallery-content h4 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.gallery-content p {
    margin: 5px 0 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .marquee-wrapper {
        height: 300px;
    }
    
    .marquee-image {
        width: 100%;
        height: 300px;
    }
    
    .gallery-item img {
        height: 250px;
    }
} 