/* assets/css/style.css - Main Stylesheet for RAJVSP Website
   Contains all custom styles, animations, and responsive design rules
   Following the RAJVSP Brand Bible color palette and design principles */

/* ===== Import Google Fonts ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ===== CSS Variables ===== */
:root {
    --brand-white: #FEFEFE;
    --brand-light-gray: #E6E7E8;
    --brand-cream: #FFFDF2;
    --brand-yellow: #FFDD21;
    --brand-red: #ED3237;
    --brand-dark-red: #DB353A;
    --brand-gold: #D2AE6D;
    --brand-dark: #1a1a2e;
    --font-primary: 'Inter', sans-serif;
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--font-primary);
    color: #333;
    background-color: var(--brand-white);
    line-height: 1.7;
    overflow-x: hidden;
}
a {
    text-decoration: none;
    color: var(--brand-red);
    transition: var(--transition);
}
a:hover {
    color: var(--brand-dark-red);
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    list-style: none;
    padding: 0;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--brand-dark);
}
h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.3rem; }
h5 { font-size: 1.1rem; }
.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}
.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-align: justify;
}
.text-muted { text-align: justify; }
.text-gold { color: var(--brand-gold); }
.text-red { color: var(--brand-red); }
.text-dark-red { color: var(--brand-dark-red); }

/* ===== Top Bar ===== */
.top-bar {
    background: var(--brand-dark);
    color: #fff;
    padding: 8px 0;
    font-size: 0.85rem;
}
.top-bar span {
    margin-right: 20px;
}
.top-bar span i {
    color: var(--brand-gold);
    margin-right: 6px;
}
.top-bar-right .social-link {
    color: #fff;
    margin-left: 14px;
    transition: var(--transition);
}
.top-bar-right .social-link:hover {
    color: var(--brand-gold);
}

/* ===== Navbar ===== */
.navbar {
    padding: 10px 0;
    background: #fff !important;
}
.navbar-brand .brand-text {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--brand-dark);
}
.navbar-brand .brand-text:hover {
    color: var(--brand-red);
}
.navbar-nav .nav-link {
    font-weight: 500;
    color: #333;
    padding: 8px 16px;
    transition: var(--transition);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--brand-red);
}
.navbar-nav .nav-link.active {
    font-weight: 600;
}
.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-md);
    border-radius: 8px;
    padding: 8px 0;
}
.dropdown-item {
    padding: 8px 20px;
    transition: var(--transition);
}
.dropdown-item i {
    width: 22px;
    color: var(--brand-red);
}
.dropdown-item:hover {
    background: var(--brand-cream);
    color: var(--brand-red);
}
.call-btn {
    background: var(--brand-red);
    border: none;
    border-radius: 50px;
    padding: 8px 20px;
    font-weight: 600;
    transition: var(--transition);
}
.call-btn:hover {
    background: var(--brand-dark-red);
    transform: scale(1.03);
}

/* ===== Hero Section ===== */
.hero-section {
    background: linear-gradient(135deg, var(--brand-cream) 0%, #fff 100%);
    padding: 80px 0 60px;
    min-height: 80vh;
    display: flex;
    align-items: center;
}
.hero-section .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
}
.hero-section .hero-title span {
    color: var(--brand-red);
}
.hero-section .hero-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin: 20px 0 30px;
    text-align: justify;
}
.hero-badge {
    display: inline-block;
    background: var(--brand-yellow);
    color: var(--brand-dark);
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 15px;
}
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}
.hero-stats .stat-item h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-red);
    margin-bottom: 0;
}
.hero-stats .stat-item p {
    font-size: 0.9rem;
    color: #666;
}
.hero-image {
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* ===== Buttons ===== */
.btn-primary {
    background: var(--brand-red);
    border: none;
    padding: 12px 32px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
}
.btn-primary:hover {
    background: var(--brand-dark-red);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.btn-outline-primary {
    border: 2px solid var(--brand-red);
    color: var(--brand-red);
    padding: 12px 32px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
}
.btn-outline-primary:hover {
    background: var(--brand-red);
    color: #fff;
    transform: translateY(-2px);
}
.btn-gold {
    background: var(--brand-gold);
    border: none;
    padding: 12px 32px;
    font-weight: 600;
    border-radius: 50px;
    color: #fff;
    transition: var(--transition);
}
.btn-gold:hover {
    background: #c49a5a;
    transform: translateY(-2px);
}

/* ===== Sections ===== */
.section-padding {
    padding: 80px 0;
}
.section-bg-light {
    background: var(--brand-cream);
}
.section-bg-gray {
    background: var(--brand-light-gray);
}

/* ===== Services Cards ===== */
.service-card {
    background: #fff;
    border-radius: 12px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid #f0f0f0;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand-gold);
}
.service-card .icon {
    width: 70px;
    height: 70px;
    background: var(--brand-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--brand-red);
    transition: var(--transition);
}
.service-card:hover .icon {
    background: var(--brand-red);
    color: #fff;
}
.service-card h4 {
    font-weight: 700;
    margin-bottom: 12px;
}
.service-card p {
    color: #666;
    font-size: 0.95rem;
}

/* ===== About Section ===== */
.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}
.about-feature .icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--brand-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-red);
    font-size: 1.2rem;
}
.about-feature h5 {
    font-weight: 600;
    margin-bottom: 4px;
}
.about-feature p {
    color: #666;
    font-size: 0.95rem;
    text-align: justify;
}

/* ===== Stats Counter ===== */
.counter-section {
    background: var(--brand-dark);
    padding: 60px 0;
    color: #fff;
}
.counter-item h3 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--brand-gold);
}
.counter-item p {
    color: #ccc;
    font-size: 1rem;
}

/* ===== Gallery ===== */
.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.gallery-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #fff;
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover .overlay {
    opacity: 1;
}
.gallery-item .overlay h5 {
    color: #fff;
    margin-bottom: 0;
}
 

/* ===== Blog Cards ===== */
.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.blog-card .blog-body {
    padding: 20px;
}
.blog-card .blog-body .meta {
    font-size: 0.85rem;
    color: #888;
}
.blog-card .blog-body h5 {
    font-weight: 700;
    margin: 10px 0;
}
.blog-card .blog-body p {
    color: #666;
    font-size: 0.95rem;
}
.blog-card .blog-body .read-more {
    color: var(--brand-red);
    font-weight: 600;
}

/* ===== Contact Form ===== */
.contact-form .form-control {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px 16px;
    transition: var(--transition);
}
.contact-form .form-control:focus {
    border-color: var(--brand-red);
    box-shadow: 0 0 0 3px rgba(237, 50, 55, 0.1);
}
.contact-form .form-label {
    font-weight: 600;
    color: #333;
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}
.contact-info-item .icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--brand-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-red);
    font-size: 1.2rem;
}
.contact-info-item h6 {
    font-weight: 700;
    margin-bottom: 4px;
}
.contact-info-item p {
    color: #666;
    margin-bottom: 0;
}

/* ===== Footer ===== */
.footer {
    background: var(--brand-dark);
    color: #ccc;
    padding: 60px 0 0;
}
.footer h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
}
.footer .footer-brand .tagline {
    color: var(--brand-gold);
    font-weight: 500;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links li a {
    color: #ccc;
    transition: var(--transition);
}
.footer-links li a:hover {
    color: var(--brand-gold);
    padding-left: 5px;
}
.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.footer-contact li i {
    color: var(--brand-gold);
    width: 20px;
}
.footer-contact li a {
    color: #ccc;
}
.footer-contact li a:hover {
    color: var(--brand-gold);
}
.footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: #fff;
    margin-right: 8px;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--brand-gold);
    color: var(--brand-dark);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    margin-top: 40px;
}
.footer-bottom a {
    color: #ccc;
}
.footer-bottom a:hover {
    color: var(--brand-gold);
}

/* ===== Sitemap ===== */
.sitemap-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}
.sitemap-list li a {
    color: #333;
    transition: var(--transition);
}
.sitemap-list li a:hover {
    color: var(--brand-red);
    padding-left: 5px;
}
.sitemap-list li a i {
    margin-right: 8px;
    font-size: 0.7rem;
}

/* ===== WhatsApp Floating Button ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 40px rgba(37, 211, 102, 0.6); }
}

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: var(--brand-red);
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    z-index: 998;
    transition: var(--transition);
}
.back-to-top.show {
    display: flex;
}
.back-to-top:hover {
    background: var(--brand-dark-red);
    transform: translateY(-3px);
}

/* ===== Page Header ===== */
.page-header {
    padding: 40px 0 40px;
    border-bottom: 3px solid var(--brand-gold);
}

.page-header h1 {
    font-size: 2.8rem;
    font-weight: 800;
}
.page-header .breadcrumb {
    background: transparent;
    padding: 0;
}
.page-header .breadcrumb-item a {
    color: var(--brand-red);
}
.page-header .breadcrumb-item.active {
    color: #666;
}

.my_aboutus{
    background-image: url('../../assets/images/aboutus.png');
}

.my_gallary{
    background-image: url('../../assets/images/gallery.png');
}

.my_realestate{
    background-image: url('../../assets/images/realestate.png');
}

.my_corporate{
    background-image: url('../../assets/images/corporate.png');
}

.my_printingdesign{
    background-image: url('../../assets/images/printingdesign.png');
}

.my_nameplate{
    background-image: url('../../assets/images/nameplate.png');
}

.my_website{
    background-image: url('../../assets/images/website.png');
}

.my_blogs{
    background-image: url('../../assets/images/blogs.png');
}

.my_contactus{
    background-image: url('../../assets/images/contactus.png');
}


/* ===== Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}
.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ===== Loading Spinner ===== */
.loading-spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}
.loading-spinner.hide {
    opacity: 0;
    pointer-events: none;
}
.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #f0f0f0;
    border-top-color: var(--brand-red);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .hero-section .hero-title {
        font-size: 2.5rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .hero-stats {
        gap: 20px;
    }
}
@media (max-width: 768px) {
    .top-bar {
        font-size: 0.75rem;
        text-align: center;
    }
    .top-bar span {
        display: inline-block;
        margin: 0 8px;
    }
    .hero-section {
        padding: 60px 0 40px;
        text-align: center;
        min-height: auto;
    }
    .hero-section .hero-title {
        font-size: 2rem;
    }
    .hero-stats {
        justify-content: center;
    }
    .section-padding {
        padding: 60px 0;
    }
    .counter-item h3 {
        font-size: 2rem;
    }
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
    .back-to-top {
        bottom: 80px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .footer {
        text-align: center;
    }
    .footer-contact li {
        justify-content: center;
    }
}
@media (max-width: 576px) {
    .hero-section .hero-title {
        font-size: 1.8rem;
    }
    .service-card {
        padding: 25px 20px;
    }
    .gallery-item img {
        height: 200px;
    }
}