/* CSS Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
    background-color: #ffffff;
    color: #000000;
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 120px;
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
button {
    cursor: pointer;
    border: none;
    outline: none;
}
section {
    padding: 40px 0;
}

/* Top Moving Strip */
.top-strip {
    background: #2e8b57; /* Green */
    color: #fff;
    padding: 8px 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.strip-content {
    display: inline-flex;
    white-space: nowrap;
    animation: moveStrip 40s linear infinite;
}
.strip-content span {
    margin-right: 40px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
}
.strip-content i {
    margin-right: 8px;
}
.strip-content a {
    color: #fff;
    text-decoration: underline;
}
.strip-content a:hover {
    color: #ffc107;
}
@keyframes moveStrip {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Navbar */
.navbar {
    background: #fff;
    border-bottom: 1px solid #eaeaea;
    position: fixed;
    top: 40px;
    width: 100%;
    z-index: 999;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.logo {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    color: #000;
}
.logo img {
    height: 40px;
    margin-right: 10px;
}
.verified-badge {
    color: #1da1f2; /* Blue */
    font-size: 18px;
    margin-left: 5px;
}
.nav-menu {
    display: flex;
    gap: 30px;
}
.nav-menu a {
    color: #333;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s;
}
.nav-menu a:hover,
.nav-menu a.active {
    color: #2e8b57;
}
.nav-menu a.active:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #2e8b57;
}
.hamburger {
    display: none;
    font-size: 24px;
    background: none;
    color: #333;
}

/* Hero Slider */
.hero {
    margin-top: 20px;
}
.slider {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s;
}
.slide.active {
    opacity: 1;
}
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slide-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 30px;
}
.slide-text h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #ffc107;
}
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.8);
    color: #333;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    transition: background 0.3s;
}
.slider-btn:hover {
    background: #fff;
}
.prev { left: 20px; }
.next { right: 20px; }
.dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
}
.dot.active {
    background: #ffc107;
}

/* Intro Sections */
.intro-sections {
    background: #f9f9f9;
    padding: 50px 0;
}
.intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.intro-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-top: 4px solid #2e8b57;
    transition: transform 0.3s;
}
.intro-card:hover {
    transform: translateY(-5px);
}
.intro-card h3 {
    color: #2e8b57;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2e8b57;
    font-weight: 600;
    margin-top: 15px;
}
.read-more:hover {
    gap: 12px;
}

/* Main Content */
.main-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2e8b57;
    border-left: 5px solid #ffc107;
    padding-left: 15px;
}
.main-content p {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

/* Investment Table */
.table-container {
    overflow-x: auto;
    margin: 30px 0;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    background: #fff;
}
.investment-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}
.investment-table th,
.investment-table td {
    border: 1px solid #ddd;
    padding: 15px;
    text-align: center;
}
.investment-table th {
    background: #2e8b57;
    color: #fff;
    font-weight: 600;
}
.investment-table tr:nth-child(even) {
    background: #f9f9f9;
}
.investment-table tr:hover {
    background: #f1f1f1;
}
.print-btn {
    background: #2e8b57;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s;
}
.print-btn:hover {
    background: #1f6b42;
}
.note {
    margin-top: 15px;
    font-style: italic;
    color: #555;
    background: #fff8e1;
    padding: 10px;
    border-radius: 5px;
}
.cta-text {
    background: #f8fff8;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    border-left: 5px solid #ffc107;
}
.cta-text p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Projects Page */
.page-title {
    font-size: 2.5rem;
    color: #2e8b57;
    margin-bottom: 10px;
    text-align: center;
}
.page-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1rem;
}
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}
.project-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.project-card:hover {
    transform: translateY(-10px);
}
.project-img {
    height: 200px;
    overflow: hidden;
}
.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.project-card:hover .project-img img {
    transform: scale(1.05);
}
.project-content {
    padding: 25px;
}
.project-content h3 {
    color: #2e8b57;
    margin-bottom: 15px;
}
.project-btn {
    display: inline-block;
    background: #2e8b57;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 15px;
    font-weight: 600;
    transition: background 0.3s;
}
.project-btn:hover {
    background: #1f6b42;
}

/* About Page */
.about-section {
    margin-bottom: 50px;
}
.about-section h2 {
    color: #2e8b57;
    border-bottom: 2px solid #ffc107;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.documents-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}
.doc-card {
    flex: 1;
    min-width: 200px;
    text-align: center;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
}
.doc-card img {
    height: 150px;
    object-fit: cover;
    margin-bottom: 15px;
    width: 100%;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}
.contact-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-top: 4px solid #2e8b57;
}
.contact-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: #fff;
}
.phone { background: #2e8b57; }
.whatsapp { background: #25D366; }
.email { background: #EA4335; }
.location { background: #4285F4; }
.contact-card h3 {
    margin-bottom: 15px;
    color: #333;
}
.contact-link {
    display: inline-block;
    background: #f1f1f1;
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 15px;
    color: #2e8b57;
    font-weight: 600;
    transition: background 0.3s;
}
.contact-link:hover {
    background: #e1e1e1;
}
.address {
    margin-top: 15px;
    color: #666;
    font-size: 0.95rem;
}
.map-section {
    margin: 50px 0;
}
.map-placeholder {
    height: 400px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 20px;
    text-align: center;
}
.contact-notes {
    background: #f8fff8;
    padding: 30px;
    border-radius: 10px;
    margin-top: 40px;
}

/* Footer */
.footer {
    background: #2e8b57;
    color: #fff;
    padding: 50px 0 0;
    margin-top: 60px;
}
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 40px;
}
.footer-section {
    flex: 1;
    min-width: 250px;
}
.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #ffc107;
}
.footer-section ul li {
    margin-bottom: 10px;
}
.footer-section a {
    color: #ddd;
    transition: color 0.3s;
}
.footer-section a:hover {
    color: #ffc107;
}
.footer-section p {
    margin-bottom: 10px;
    color: #eee;
}
.footer-bottom {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 0.9rem;
    color: #ccc;
}

/* Fixed Buttons */
.fixed-btn {
    position: fixed;
    z-index: 999;
    padding: 15px 20px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}
.fixed-btn:hover {
    transform: scale(1.05);
}
.whatsapp-btn {
    background: #25D366;
    color: #fff;
    bottom: 30px;
    right: 30px;
}
.contact-btn {
    background: #2e8b57;
    color: #fff;
    bottom: 30px;
    left: 30px;
}

/* Responsive */
@media (max-width: 992px) {
    .slider {
        height: 400px;
    }
    .slide-text h1 {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    body {
        padding-top: 100px;
    }
    .hamburger {
        display: block;
    }
    .nav-menu {
        position: fixed;
        top: 100px;
        left: -100%;
        flex-direction: column;
        background: #fff;
        width: 100%;
        text-align: center;
        padding: 20px;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        transition: left 0.3s;
        gap: 0;
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-menu li {
        margin: 15px 0;
    }
    .strip-content {
        animation: moveStrip 30s linear infinite;
    }
    .slider {
        height: 350px;
    }
    .slide-text {
        padding: 20px;
    }
    .slide-text h1 {
        font-size: 1.8rem;
    }
    .fixed-btn {
        padding: 12px 18px;
        font-size: 0.9rem;
    }
    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
    }
    .contact-btn {
        bottom: 20px;
        left: 20px;
    }
}
@media (max-width: 576px) {
    .top-strip {
        font-size: 12px;
        padding: 6px 0;
    }
    .strip-content span {
        margin-right: 25px;
    }
    .slider {
        height: 300px;
    }
    .slide-text h1 {
        font-size: 1.5rem;
    }
    .page-title {
        font-size: 2rem;
    }
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
}





/* Document Grid Styles */
.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.doc-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.doc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.image-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.doc-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.doc-card:hover .doc-image {
    transform: scale(1.05);
}

.view-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 2;
}

.doc-card:hover .view-btn {
    opacity: 1;
    transform: translateY(0);
}

.view-btn:hover {
    background: rgba(0, 0, 0, 0.9);
}

.doc-card p {
    padding: 15px;
    text-align: center;
    font-weight: 600;
    margin: 0;
    color: #333;
    font-size: 16px;
    background: #f9f9f9;
    border-top: 1px solid #eee;
}

/* Image Modal Styles */
.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.image-modal .modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    margin: 2% auto;
    background: transparent;
    padding: 20px;
    text-align: center;
}

#fullImage {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(255,255,255,0.1);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.9); }
    to { transform: scale(1); }
}

.close-modal {
    position: absolute;
    top: -40px;
    right: -10px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    transition: 0.3s;
    background: rgba(0,0,0,0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.close-modal:hover {
    color: #ff0000;
    background: rgba(255,255,255,0.1);
}

.image-title {
    color: white;
    font-size: 18px;
    margin-top: 15px;
    padding: 10px;
    font-weight: 500;
}

.modal-controls {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Responsive Design */
@media (max-width: 768px) {
    .documents-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .image-container {
        height: 180px;
    }
    
    .view-btn {
        opacity: 1;
        transform: translateY(0);
        bottom: 10px;
        right: 10px;
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .image-modal .modal-content {
        max-width: 95%;
        margin: 10% auto;
    }
    
    .close-modal {
        top: -60px;
        right: 10px;
    }
}

@media (max-width: 480px) {
    .documents-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .modal-controls {
        flex-direction: column;
        gap: 10px;
    }
    
    .nav-btn {
        width: 100%;
    }
}



/* Image Modal Styles */
.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1000;
}

.image-modal .modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    margin: 2% auto;
    text-align: center;
}

#fullImage {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: -10px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    background: rgba(0,0,0,0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.image-title {
    color: white;
    font-size: 18px;
    margin-top: 15px;
    padding: 10px;
}

.modal-controls {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}







/* Mobile ke liye modal close button ko fix karein */
@media (max-width: 768px) {
    .close-modal {
        position: fixed !important;
        top: 15px !important;
        right: 15px !important;
        background: rgba(0, 0, 0, 0.8) !important;
        width: 45px !important;
        height: 45px !important;
        font-size: 35px !important;
        z-index: 1001 !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }
    
    .image-modal .modal-content {
        padding-top: 70px !important;
        margin: 0 auto !important;
        max-height: 100vh !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    #fullImage {
        max-height: calc(100vh - 150px) !important;
        max-width: 95% !important;
        margin: 0 auto !important;
    }
    
    .modal-controls {
        position: fixed !important;
        bottom: 20px !important;
        left: 0 !important;
        right: 0 !important;
        background: rgba(0, 0, 0, 0.7) !important;
        padding: 15px !important;
        margin: 0 !important;
        gap: 10px !important;
    }
    
    .nav-btn {
        flex: 1 !important;
        padding: 12px !important;
        font-size: 16px !important;
    }
}

@media (max-width: 480px) {
    .close-modal {
        top: 10px !important;
        right: 10px !important;
        width: 40px !important;
        height: 40px !important;
        font-size: 30px !important;
    }
    
    .image-title {
        font-size: 16px !important;
        padding: 5px !important;
        margin-top: 10px !important;
    }
    
    .modal-controls {
        bottom: 10px !important;
        padding: 10px !important;
    }
    
    .nav-btn {
        padding: 10px !important;
        font-size: 14px !important;
    }
}

