/* 
   M/s. Prakash Mahadeo Savle & Co.
   Custom Stylesheet (Targeting Reference Look & Feel)
*/

:root {
    --primary-color: #3b1968; /* Deep Purple */
    --primary-light: #522c81; 
    --secondary-color: #e87140; /* Vibrant Orange */
    --text-dark: #333333;
    --text-muted: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #eaeaea;
    --success-green: #28a745;
    --font-main: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utilities */
.text-orange { color: var(--secondary-color) !important; }
.text-green { color: var(--success-green); }
.text-center { text-align: center; }
.bg-light { background-color: var(--bg-light); }
.mt-5 { margin-top: 3rem; }
.mt-3 { margin-top: 1.5rem !important; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 14px;
}

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

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

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

/* Header & Navbar */
#navbar {
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-img {
    max-height: 55px;
    width: auto;
    object-fit: contain;
}

.logo-subtext {
    font-size: 11px;
    font-weight: 500;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    position: relative;
    background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--primary-color) 0%, rgba(59, 25, 104, 0.85) 50%, rgba(59, 25, 104, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

/* Stats Banner */
.stats-banner {
    background-color: var(--primary-color);
    color: white;
    padding: 50px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 20px;
}

.stat-item h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-plus {
    color: var(--secondary-color);
}

.stat-item p {
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Section Shared Defaults */
.section-title {
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--primary-color);
    font-weight: 700;
}

.section-title .subtitle {
    font-size: 16px;
    color: var(--text-muted);
    margin-top: 5px;
}

section {
    padding: 80px 0;
}

/* About Section */
.about-content {
    max-width: 800px;
    margin-bottom: 40px;
}

.about-text p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.mission-card {
    padding: 40px 30px;
    border-radius: 8px;
    color: white;
    transition: var(--transition);
}

.mission-card:hover { transform: translateY(-5px); }
.mission-card h3 { font-size: 22px; margin-bottom: 15px; }
.mission-card p { font-size: 14px; opacity: 0.9; }

.card-purple { background-color: var(--primary-light); }
.card-orange { background-color: var(--secondary-color); }
.card-purple-dark { background-color: var(--primary-color); }

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.service-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    transform: translateY(-5px);
    border-color: var(--secondary-color);
}

.icon-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: var(--text-dark);
}

.icon-header .arrow-icon {
    font-size: 18px;
    color: var(--secondary-color);
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
}

.service-card:hover .arrow-icon {
    opacity: 1;
    transform: translateX(0);
}

.service-card h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Partner Profile */
.profile-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.profile-image img {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(59, 25, 104, 0.15);
}

.profile-details { flex: 1; }

.partner-tag {
    color: var(--secondary-color);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.profile-details h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
    margin-top: 5px;
}

.experience-list { list-style: none; }
.experience-list li {
    margin-bottom: 15px;
    font-size: 15px;
    color: var(--text-muted);
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.experience-list li i { margin-top: 4px; }

/* Contact */
.contact-grid-simple {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid transparent;
    transition: var(--transition);
}

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

.contact-icon {
    font-size: 32px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--text-muted);
    font-size: 15px;
}

.map-placeholder {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    min-height: 300px;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
}

.map-overlay:hover { background: rgba(0,0,0,0.6); }

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    padding-bottom: 30px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col h3 { margin-bottom: 15px; }
.footer-logo {
    color: white;
    font-size: 24px;
    line-height: 1.2;
}

.footer-col p { opacity: 0.8; font-size: 14px; margin-bottom: 10px;}

.social-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-links a {
    color: white;
    font-size: 18px;
    opacity: 0.8;
    transition: var(--transition);
}
.social-links a:hover { opacity: 1; color: var(--secondary-color); }
.copyright { font-size: 13px; opacity: 0.6; }

.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 100;
    text-decoration: none;
    transition: var(--transition);
}

.whatsapp-btn:hover { transform: scale(1.1); }

/* Responsiveness */
@media (max-width: 992px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .mission-grid { grid-template-columns: 1fr; }
    .profile-container { flex-direction: column; text-align: center; }
    .experience-list li { justify-content: center; text-align: left; }
    .contact-grid-simple { grid-template-columns: 1fr; max-width: 450px; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    .hero-content h1 { font-size: 36px; }
    .footer-content { flex-direction: column; gap: 30px; }
}
