* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(181deg, #FF6B35, #ffffff);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    width: 200px;
    height: auto;
    animation: blink 1.5s ease-in-out infinite;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.95);
    }
}

:root {
    --primary: #FF6B35;
    --primary-dark: #e55a2b;
    --primary-light: #ff8c66;
    --secondary: #fef5f0;
    --accent: #28a745;
    --foreground: #1a1a1a;
    --muted: #666;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
}

body {
    font-family:  'Poppins', 'Arial Unicode MS', 'Mangal', sans-serif;
    color: var(--foreground);
    line-height: 1.7;
    background: var(--white);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Headings use Poppins for better visual appeal */
h1, h2, h3, h4, h5, h6,
.section-title,
.section-tag,
.logo-text h2,
.about-text h3 {
    font-family: 'Poppins', 'Noto Sans Devanagari', 'Hind', sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

/* Buttons and important text */
.btn,
.nav-links a,
.submit-btn {
    font-family: 'Poppins', 'Noto Sans Devanagari', 'Hind', sans-serif;
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* Ensure all Marathi text uses proper font */
* {
    font-variant-ligatures: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Full width containers - no side margins */
.hero,
.banner-container {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
}

.hero .container {
    padding-left: 20px;
    padding-right: 20px;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(36deg, #ff4e00, #007f21);
    color: var(--white);
    padding: 8px 0;
    font-size: 14px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 30px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a {
    color: var(--white);
    text-decoration: none;
}

/* Header */
.header {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 999;
    transition: all 0.3s;
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 160px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: var(--foreground);
}

.logo-section:hover {
    opacity: 0.9;
}

.logo-section img {
    width: 160px;
    height: auto;
}

.logo-text h2 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
}

.logo-text p {
    font-size: 14px;
    color: var(--primary);
    font-weight: 500;
}

.nav-links {
    display: flex;
    gap: 10px;
    list-style: none;
}

.nav-links a {
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--foreground);
    font-size: 14px;
    transition: all 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    background: var(--primary);
    color: var(--white);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    margin-top: 200px;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.banner-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.banner-container img {
    width: 100%;
    height: auto;
    max-height: 70vh;
    min-height: 300px;
    object-fit: cover;
    display: block;
}

.banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(255,107,53,0.6), transparent);
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    text-align: center;
    padding: 40px 20px;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.logo-display {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid rgba(255,255,255,0.3);
    margin: 30px auto;
    max-width: 600px;
}

.logo-display img {
    width: 100%;
    max-width: 400px;
    height: auto;
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: var(--white);
    color: var(--primary);
}

.btn-primary:hover {
    background: rgba(255,255,255,0.9);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.3);
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    color: var(--primary);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--foreground);
}

.section-subtitle {
    color: var(--muted);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.divider {
    width: 80px;
    height: 3px;
    background: var(--primary);
    margin: 20px auto;
    border-radius: 2px;
    opacity: 0.3;
}

/* About Section */
.about {
    background: linear-gradient(to bottom, var(--white), var(--secondary));
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.about-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--muted);
    margin-bottom: 15px;
    line-height: 1.8;
}

.milestones {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.milestone-card {
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.milestone-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.milestone-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,107,53,0.1);
    border-radius: 50%;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

/* Jahirnama Section */
.jahirnama {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
}

.jahirnama .section-tag,
.jahirnama .section-title,
.jahirnama .section-subtitle {
    color: var(--white);
}

.jahirnama-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.jahirnama-card {
    background: var(--white);
    color: var(--foreground);
    padding: 25px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.jahirnama-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.status-badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 15px;
}

.status-in-progress {
    background: rgba(255,107,53,0.1);
    color: var(--primary);
}

.status-completed {
    background: rgba(40,167,69,0.1);
    color: var(--accent);
}

.status-upcoming {
    background: rgba(108,117,125,0.1);
    color: var(--muted);
}

/* Work Done Section */
.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.work-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.work-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.work-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,107,53,0.1);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.impact-badge {
    display: inline-block;
    background: rgba(40,167,69,0.1);
    color: var(--accent);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-top: 15px;
}

.stats-box {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin-top: 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 10px;
}

/* Development Strategies */
.dev-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.dev-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.dev-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.dev-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
}

.dev-list {
    list-style: none;
    margin-top: 20px;
}

.dev-list li {
    display: flex;
    align-items: start;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--muted);
}

.dev-list li::before {
    content: "•";
    color: var(--primary);
    font-size: 20px;
    margin-top: 2px;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-info-card,
.contact-form-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,107,53,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-family: inherit;
    font-size: 16px;
    transition: all 0.3s;
    box-sizing: border-box;
}

.form-group select {
    background: var(--white);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255,107,53,0.1);
}

.form-group select:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23FF6B35' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,107,53,0.3);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.alert {
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 50px 0;
    text-align: center;
}

.footer h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.footer p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s;
}

.social-link:hover {
    background: rgba(255,255,255,0.2);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
    z-index: 1000;
    transition: all 0.3s;
    padding: 12px;
    box-sizing: border-box;
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37,211,102,0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .top-bar {
        font-size: 12px;
        padding: 6px 0;
    }

    .top-bar-content {
        flex-wrap: wrap;
        gap: 5px;
    }

    .top-bar-content > div {
        font-size: 11px;
    }

    .header {
        top: 30px;
    }

    .nav-container {
        height: auto;
        flex-direction: column;
        padding: 15px 0;
        gap: 10px;
    }

    .logo-section {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .logo-section img {
        width: 120px;
    }

    .logo-text h2 {
        font-size: 16px;
    }

    .logo-text p {
        font-size: 12px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 15px;
        gap: 5px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 8px 15px;
        font-size: 13px;
        text-align: center;
    }

    .mobile-menu-btn {
        display: block;
        position: absolute;
        top: 15px;
        right: 20px;
    }

    .hero {
        margin-top: 180px;
    }

    .banner-container {
        width: 100%;
        position: relative;
        overflow: visible;
    }

    .banner-container img {
        width: 100%;
        height: auto;
        min-height: 100%;
        max-height: none;
        object-fit: cover;
        display: block;
    }

    .banner-overlay {
        display: none;
    }

    .hero-content {
        padding: 30px 20px;
    }

    .logo-display {
        padding: 20px;
    }

    .logo-display img {
        max-width: 250px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 14px;
    }

    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .milestones,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .stats-box {
        padding: 25px 15px;
        margin-top: 30px;
    }

    .stats-grid {
        gap: 15px;
    }

    .stat-number {
        font-size: 28px;
        margin-bottom: 5px;
    }

    .stats-box p {
        font-size: 12px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .container {
        padding: 0 15px;
    }

    .loader-logo {
        width: 150px;
    }
}

