/* ==========================================
   KALIDAS ENTERPRISE - MAIN STYLESHEET
   Save as: assets/css/style.css
   ========================================== */

:root {
    --primary-color: #0066b2;
    --secondary-color: #c41e3a;
    --accent-color: #f8f9fa;
    --text-dark: #333;
    --text-light: #666;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

/* ==========================================
   NAVIGATION
   ========================================== */

.navbar {
    background: linear-gradient(135deg, var(--primary-color) 0%, #004d87 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: white !important;
}

.navbar-nav .nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: white !important;
    transform: translateY(-2px);
}

/* ==========================================
   BREADCRUMB
   ========================================== */

.breadcrumb-section {
    /*background: var(--accent-color);*/
	background: #1e7e34;
    padding: 10px 0;
    color: white;
}

.breadcrumb-section h1 {
    margin: 0;
    font-weight: 700;
}

.breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0px 0 0;
}

.breadcrumb-item a {
    color: black;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: black;
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero-section {
	background: #1e7e34;
    color: white;
    padding: 50px 0 50px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

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

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* ==========================================
   BUSINESS CARDS
   ========================================== */

.business-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

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

.business-card .card-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #004d87 100%);
    color: white;
    padding: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    border: none;
}

.business-card.motors .card-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #a01628 100%);
}

.business-card.cloth .card-header {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
}

.business-card .card-body {
    padding: 2rem;
}

.business-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.business-card.motors .business-icon {
    color: var(--secondary-color);
}

.business-card.cloth .business-icon {
    color: #28a745;
}

/* ==========================================
   BUSINESS DETAIL CARDS
   ========================================== */

.business-detail-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
    transition: all 0.3s;
}

.business-detail-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.business-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #004d87 100%);
    color: white;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.business-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.business-header.motors {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #a01628 100%);
}

.business-header.cloth {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
}

.business-icon-large {
    font-size: 5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.business-body {
    padding: 3rem;
}

/* ==========================================
   FEATURE SECTIONS
   ========================================== */

.why-choose-section {
    background-color: var(--accent-color);
    padding: 80px 0;
}

.feature-box {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.12);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

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

.feature-list i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* ==========================================
   PROPRIETOR SECTION
   ========================================== */

.proprietor-section {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    padding: 3rem;
    margin: 3rem 0;
}

.proprietor-img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* ==========================================
   MISSION VISION VALUES
   ========================================== */

.mission-vision-values {
    background: var(--accent-color);
}

.mvv-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.mvv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.12);
}

.mvv-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* ==========================================
   TIMELINE
   ========================================== */

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline-item {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* ==========================================
   CERTIFICATE
   ========================================== */

.certificate-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 0;
}

.certificate-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s;
    cursor: pointer;
}

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

.certificate-info {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-top: 2rem;
}

.badge-custom {
    background: linear-gradient(135deg, var(--primary-color) 0%, #004d87 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

/* ==========================================
   GALLERY
   ========================================== */

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    margin-bottom: 30px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

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

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

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

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

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

.gallery-category {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.modal-img {
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

/* ==========================================
   CONTACT PAGE
   ========================================== */

.contact-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s;
}

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

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #004d87 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.contact-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info {
    background: var(--accent-color);
    border-radius: 10px;
    padding: 2rem;
}

.info-item {
    display: flex;
    align-items: start;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #dee2e6;
}

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

.info-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-right: 1rem;
    flex-shrink: 0;
}

.info-content h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.info-content p {
    margin: 0;
    color: var(--text-light);
}

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

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.business-hours {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #004d87 100%);
    color: white;
    padding: 4rem 0;
    border-radius: 15px;
    margin: 3rem 0;
}

.cta-section h3 {
    font-weight: 700;
    margin-bottom: 1rem;
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.divider {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 0 auto 2rem;
}

.info-box {
    background: var(--accent-color);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 5px;
    margin-top: 2rem;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-color) 0%, #004d87 100%);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,102,178,0.3);
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 50px 0 20px;
}

.footer h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s;
}

.footer a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
}

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

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

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

    .proprietor-section {
        padding: 2rem;
    }

    .business-header {
        padding: 2rem;
    }

    .business-body {
        padding: 2rem;
    }

    .contact-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
}