/* style.css - Premium Corporate Theme for Siddhi Loha Private Limited */

:root {
    --primary-color: #0056b3; /* Navy Blue */
    --primary-light: #e3f2fd;
    --secondary-color: #6c757d; /* Steel Grey */
    --accent-color: #0d6efd;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --success-color: #198754;
    --warning-color: #ffc107;
    --transition-slow: 0.8s ease;
    --transition-smooth: 0.4s ease;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Header Styles */
.top-bar {
    font-size: 0.9rem;
}

.navbar {
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.navbar-brand .gear-icon {
    position: relative;
    width: 40px;
    height: 40px;
}

.gear-icon i {
    font-size: 2.2rem;
    color: var(--primary-color);
    animation: rotate 20s linear infinite;
}

.gear-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15px;
    height: 15px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

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

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: var(--transition-smooth);
    color: var(--dark-color) !important;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

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

.nav-link:hover, .nav-link.active {
    color: var(--primary-color) !important;
}

.btn-cta {
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border: none;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    overflow: hidden;
    margin-top: -1px;
}

.min-vh-90 {
    min-height: 90vh;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.slide-1 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                      url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
}

.slide-2 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                      url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
}

.slide-3 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                      url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
}

.hero-content {
    animation: fadeInUp 1s ease;
}

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

.btn-primary {
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-outline-light:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

/* Stats Bar */
.stats-bar {
    z-index: 10;
}

.stat-item {
    transition: var(--transition-smooth);
}

.stat-item:hover {
    background-color: var(--light-color);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-text {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

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

.service-card:hover, .product-card:hover, .testimonial-card:hover, .industry-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg) !important;
}

.service-icon, .industry-icon, .material-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    display: inline-block;
    padding: 1rem;
    background-color: var(--primary-light);
    border-radius: 10px;
}

/* Material Items */
.material-item {
    transition: var(--transition-smooth);
    border: 1px solid #e9ecef;
}

.material-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

/* Progress Bars */
.progress {
    border-radius: 10px;
    background-color: #e9ecef;
}

.progress-bar {
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 10px;
}

/* Quality Section */
.quality-overlay {
    background: rgba(0, 86, 179, 0.1);
    border-radius: 10px;
}

.quality-badge {
    animation: pulse 2s infinite;
}

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

/* Testimonials */
.testimonial-card {
    border-left: 4px solid var(--primary-color);
}

.testimonial-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    opacity: 0.3;
}

.avatar-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-weight: 600;
}

/* CTA Section */
.cta-buttons .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Footer */
footer a {
    text-decoration: none;
    transition: var(--transition-smooth);
}

footer a:hover {
    color: var(--primary-color) !important;
    padding-left: 5px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition-smooth);
}

.social-icon:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: none;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

/* Badges */
.badge.bg-primary-soft {
    background-color: var(--primary-light);
    color: var(--primary-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
}

/* Form Styles */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(0, 86, 179, 0.25);
}

/* Swiper Customization */
.swiper-button-next, .swiper-button-prev {
    color: var(--primary-color) !important;
    background-color: rgba(255, 255, 255, 0.9);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 1.5rem !important;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background-color: white;
    transform: scale(1.1);
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-color) !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .min-vh-90 {
        min-height: 80vh;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .stats-bar {
        position: relative !important;
        margin-top: 2rem;
    }
    
    .stat-item {
        border: 1px solid #e9ecef;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .hero-buttons .btn:last-child {
        margin-bottom: 0;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Print Styles */
@media print {
    .hero-slider, .swiper-button-next, .swiper-button-prev, .swiper-pagination,
    .navbar, .top-bar, .back-to-top, .btn {
        display: none !important;
    }
}

/* About Page Specific Styles */

/* Page Banner */
.page-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, #004494 100%);
    padding: 5rem 0;
}

.page-banner .breadcrumb-item a {
    text-decoration: none;
}

.page-banner .breadcrumb-item.active {
    color: white;
}

/* Company Introduction */
.experience-badge {
    transform: translate(-10px, -10px);
}

.highlight-icon {
    font-size: 1.2rem;
    color: var(--primary-color);
}

/* Vision & Mission Cards */
.mission-card {
    transition: var(--transition-smooth);
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg) !important;
}

.mission-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    display: inline-block;
    padding: 1rem;
    background-color: var(--primary-light);
    border-radius: 10px;
}

.vision-box, .mission-box {
    border-left: 4px solid var(--primary-color);
}

.vision-icon, .mission-icon {
    font-size: 2rem;
    margin-top: 0.25rem;
}

/* Core Values */
.value-card {
    transition: var(--transition-smooth);
    border-top: 3px solid transparent;
}

.value-card:hover {
    border-top-color: var(--primary-color);
    transform: translateY(-5px);
}

.value-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Facilities & Capabilities */
.facility-overlay {
    background: rgba(0, 86, 179, 0.8);
}

.capability-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

/* Quality Process */
.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

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

.step-content {
    flex: 1;
}

/* Quality Metrics */
.metric-item .progress {
    border-radius: 5px;
}

.metric-item .progress-bar {
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 5px;
}

/* Certifications */
.certification-card {
    transition: var(--transition-smooth);
    border: 1px solid #e9ecef;
}

.certification-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

/* Team Section */
.team-card {
    transition: var(--transition-smooth);
    overflow: hidden;
}

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

.team-image {
    height: 250px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.team-social a {
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.team-social a:hover {
    color: var(--accent-color) !important;
}

/* SEO Content */
.seo-content {
    border-left: 4px solid var(--primary-color);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .page-banner {
        padding: 3rem 0;
    }
    
    .page-banner h1 {
        font-size: 2.5rem;
    }
    
    .experience-badge {
        transform: translate(0, 0);
        margin: 1rem !important;
        position: relative !important;
        display: inline-block;
    }
}

@media (max-width: 576px) {
    .page-banner h1 {
        font-size: 2rem;
    }
    
    .process-step {
        flex-direction: column;
    }
    
    .step-number {
        margin-bottom: 0.5rem;
        margin-right: 0;
    }
}

/* Services Page Specific Styles */

/* Service Main Cards */
.service-main-card {
    transition: var(--transition-smooth);
    border-radius: 12px;
    border: 1px solid #e9ecef;
    overflow: hidden;
}

.service-main-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg) !important;
    border-color: var(--primary-color);
}

.service-icon-main {
    font-size: 2.8rem;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: var(--primary-light);
    border-radius: 12px;
}

.service-main-card .card-title {
    color: var(--primary-color);
    min-height: 60px;
}

.service-main-card .card-text {
    min-height: 80px;
}

.service-features ul li {
    padding: 3px 0;
}

.service-materials .badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.6rem;
}

/* Service Detail Sections */
.service-detail-image {
    overflow: hidden;
    border-radius: 12px;
}

.service-detail-image img {
    transition: var(--transition-slow);
    width: 100%;
    height: auto;
}

.service-detail-image:hover img {
    transform: scale(1.05);
}

.service-badge {
    z-index: 10;
}

.feature-check {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.service-specs ul li {
    padding: 5px 0;
    border-bottom: 1px dashed #e9ecef;
}

.service-specs ul li:last-child {
    border-bottom: none;
}

/* Service Process */
.service-process {
    position: relative;
    padding: 2rem 0;
}

.service-process::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background-color: var(--primary-light);
    z-index: 1;
}

.process-step-row {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step-item {
    flex: 1;
    padding: 0 15px;
    position: relative;
}

.step-number-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-md);
}

.process-step-item h4 {
    color: var(--primary-color);
    min-height: 60px;
}

.process-step-item p {
    max-width: 200px;
    margin: 0 auto;
}

/* Advantages Cards */
.advantage-card {
    transition: var(--transition-smooth);
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg) !important;
    border-color: var(--primary-color);
}

.advantage-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--primary-light);
    border-radius: 10px;
}

/* SEO Content Box */
.seo-content {
    border-left: 4px solid var(--primary-color);
    background: linear-gradient(to right, rgba(0, 86, 179, 0.05), white);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .process-step-row {
        flex-wrap: wrap;
    }
    
    .process-step-item {
        flex: 0 0 33.333%;
        margin-bottom: 2rem;
    }
    
    .service-process::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .process-step-item {
        flex: 0 0 50%;
    }
    
    .service-main-card .card-text {
        min-height: auto;
    }
    
    .service-main-card .card-title {
        min-height: auto;
    }
}

@media (max-width: 576px) {
    .process-step-item {
        flex: 0 0 100%;
    }
    
    .step-number-circle {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .process-step-item h4 {
        min-height: auto;
        margin-top: 1rem;
    }
    
    .service-icon-main {
        width: 60px;
        height: 60px;
        font-size: 2.2rem;
    }
}

/* Products Page Specific Styles */

/* Category Headers */
.category-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--primary-light);
    border-radius: 12px;
}

/* Product Category Cards */
.product-category-card {
    transition: var(--transition-smooth);
    border-radius: 12px;
    border: 1px solid #e9ecef;
    overflow: hidden;
}

.product-category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg) !important;
    border-color: var(--primary-color);
}

.product-image-category {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.product-image-category img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 86, 179, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.product-category-card:hover .product-overlay {
    opacity: 1;
}

.product-overlay .btn {
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.product-category-card:hover .product-overlay .btn {
    transform: translateY(0);
}

.product-category-card .card-title {
    color: var(--primary-color);
    font-weight: 600;
}

.product-tags .badge {
    font-size: 0.7rem;
    padding: 0.3rem 0.5rem;
    margin-right: 5px;
    margin-bottom: 5px;
}

/* Category Info Box */
.category-info {
    border-left: 4px solid var(--primary-color);
}

/* Product Gallery Slider */
.productGallerySlider {
    padding: 20px 10px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.gallery-caption {
    background: white;
    padding: 15px;
    text-align: center;
}

.gallery-caption h5 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 600;
}

.gallery-caption p {
    color: var(--secondary-color);
    font-size: 0.85rem;
    margin-bottom: 0;
}

.swiper-button-next, .swiper-button-prev {
    color: var(--primary-color) !important;
    background-color: rgba(255, 255, 255, 0.9);
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 1.2rem !important;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background-color: white;
    transform: scale(1.1);
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-color) !important;
}

/* Customization Features */
.customization-features {
    padding-right: 2rem;
}

.custom-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-light);
    border-radius: 8px;
}

/* Capabilities List */
.capabilities-list {
    border-top: 3px solid var(--primary-color);
}

.capabilities-list ul li {
    padding: 8px 0;
    border-bottom: 1px dashed #e9ecef;
}

.capabilities-list ul li:last-child {
    border-bottom: none;
}

/* SEO Content Box */
.seo-content {
    border-left: 4px solid var(--primary-color);
    background: linear-gradient(to right, rgba(0, 86, 179, 0.05), white);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .category-icon {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }
    
    .product-image-category {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .customization-features {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .product-image-category {
        height: 160px;
    }
}

@media (max-width: 576px) {
    .category-icon {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .product-image-category {
        height: 140px;
    }
    
    .gallery-item img {
        height: 180px;
    }
}

/* Contact Page Specific Styles */

/* Contact Method Cards */
.contact-method-card {
    transition: var(--transition-smooth);
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.contact-method-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg) !important;
    border-color: var(--primary-color);
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: var(--primary-light);
    border-radius: 50%;
    margin: 0 auto;
}

/* Contact Form Card */
.contact-form-card {
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    border-radius: 8px;
    border: 1px solid #dee2e6;
    padding: 0.75rem 1rem;
    transition: var(--transition-smooth);
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(0, 86, 179, 0.25);
}

.contact-form-card .form-label {
    font-weight: 500;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.contact-form-card .btn-primary {
    padding: 1rem;
    font-weight: 600;
    border-radius: 8px;
}

/* Contact Info Card */
.contact-info-card {
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.contact-info-item {
    padding-bottom: 1rem;
    border-bottom: 1px dashed #e9ecef;
}

.contact-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-info-icon {
    font-size: 1.2rem;
    color: var(--primary-color);
    display: inline-flex;
    align-items: flex-start;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: var(--primary-light);
    border-radius: 6px;
    padding-top: 4px;
}

/* Why Contact Card */
.why-contact-card {
    border-radius: 12px;
    border-top: 3px solid var(--primary-color);
    background-color: #f8f9fa;
}

.why-contact-card ul li {
    padding: 5px 0;
}

/* Map Section */
.map-container {
    border-radius: 12px;
    overflow: hidden;
}

.map-placeholder {
    height: 100%;
}

.map-image {
    height: 100%;
    background-color: #f8f9fa;
}

.map-info {
    display: flex;
    flex-direction: column;
}

.location-details {
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed #dee2e6;
    margin-bottom: 1.5rem;
}

.location-details:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.location-details h5 {
    color: var(--primary-color);
}

/* Department Cards */
.department-card {
    transition: var(--transition-smooth);
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.department-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg) !important;
    border-color: var(--primary-color);
}

.department-icon {
    font-size: 2.2rem;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--primary-light);
    border-radius: 12px;
    margin: 0 auto;
}

.department-contact p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* FAQ Accordion */
.accordion-button {
    font-weight: 500;
    color: var(--primary-color);
    background-color: white;
    border-radius: 8px !important;
    padding: 1rem 1.25rem;
}

.accordion-button:not(.collapsed) {
    color: white;
    background-color: var(--primary-color);
    box-shadow: none;
}

.accordion-button:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(0, 86, 179, 0.25);
}

.accordion-body {
    padding: 1rem 1.25rem;
    background-color: #f8f9fa;
    border-radius: 0 0 8px 8px;
}

.accordion-item {
    border-radius: 8px !important;
    overflow: hidden;
}

/* Contact Details Modal */
.contact-details-modal .detail-item h6 {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-details-modal .detail-item ul li {
    padding: 2px 0;
}

.contact-details-modal .detail-item p {
    line-height: 1.5;
}

.modal-header {
    border-radius: 0.5rem 0.5rem 0 0;
}

/* SEO Content Box */
.seo-content {
    border-left: 4px solid var(--primary-color);
    background: linear-gradient(to right, rgba(0, 86, 179, 0.05), white);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .department-icon {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }
    
    .map-info {
        padding: 1.5rem !important;
    }
}

@media (max-width: 576px) {
    .contact-form-card .card-body {
        padding: 1.5rem !important;
    }
    
    .contact-info-card .card-body {
        padding: 1.5rem !important;
    }
    
    .accordion-button {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }
}

.bi-chevron-up::before{
    position: relative;
    right: 6px;
}
