/* Custom CSS for Chandraprabha Graphics */
:root {
    --primary-color: #F59E0B;
    --secondary-color: #DC2626;
    --accent-color: #F97316;
    --dark-color: #1F2937;
    --light-color: #F8FAFC;
    --gradient-primary: linear-gradient(135deg, #F97316 0%,#F97316  100%);
    --gradient-secondary: linear-gradient(135deg, #F59E0B 0%, #F97316 100%);
}
.logo-font{
    font-size: 26px;
}
/* .carousel-caption h5{
    color: #E5E7EB;
} */

.carousel-dark .carousel-control-next-icon, .carousel-dark .carousel-control-prev-icon
 {
    filter: invert(0) grayscale(100);
}
/* Override Bootstrap primary color */
a.card{
    text-decoration: none;
}
.bg-primary {
    background: var(--gradient-primary) !important;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    transition: all 0.3s ease;
}
.bg-menu{ background: #fff;    box-shadow: 0px 0px 0px 1px #eaeaea;}
.btn-primary:hover {
    background: linear-gradient(135deg, #B91C1C 0%, #EA580C 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.btn-warning {
    background-color: var(--secondary-color);
    border: none;
    color: white;
    transition: all 0.3s ease;
}

.btn-warning:hover {
    background-color: #D97706;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.text-primary {
    color: var(--primary-color) !important;
}

/* Service Cards */
.service-card {
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

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

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

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-detail-card {
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

/* Team Cards */
.team-card {
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.team-photo {
    width: 100px;
    height: 100px;
    object-fit: cover;
    transition: all 0.3s ease;
}

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

/* Value Cards */
.value-card {
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: var(--gradient-primary);
    color: white;
}

.value-card:hover .value-icon,
.value-card:hover .card-title,
.value-card:hover .card-text {
    color: white !important;
}

/* Contact Form */
.contact-form-card,
.contact-info-card {
    border-radius: 20px;
    overflow: hidden;
}

.form-control,
.form-select {
    border-radius: 10px;
    border: 2px solid #E5E7EB;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(220, 38, 38, 0.25);
}

/* Contact Items */
.contact-item {
    transition: all 0.3s ease;
}

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

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

.contact-item:hover .contact-icon {
    transform: scale(1.2);
}

/* Page Headers */
.page-header {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><pattern id="pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="1" cy="1" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23pattern)"/></svg>');
    opacity: 0.5;
}

/* About Image Container */
.about-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.about-image-container img {
    transition: all 0.3s ease;
}

.about-image-container:hover img {
    transform: scale(1.05);
}

/* Statistics */
.stat-item {
    transition: all 0.3s ease;
}

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

/* Social Links */
.social-links a {
    transition: all 0.3s ease;
    display: inline-block;
}

.social-links a:hover {
    transform: translateY(-3px);
    color: var(--secondary-color) !important;
}

/* Map Container */
.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Navigation Enhancements */
.navbar-brand {
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

/* Logo Styling */
.logo {
    height:70px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar-brand:hover .logo {
    transform: scale(1.1);
}

.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}
.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}
@media (max-width:767px) {
    .logo-font{
    font-size: 16px;
}
}