@charset "UTF-8";

/* ============================================================
   SRIRAM GROUPS - FULL WIDTH & HIGH VISIBILITY ENTERPRISE STYLING
   ============================================================ */

/* Universal Layout & Modern Dark Background */
body {
    font-family: 'Segoe UI', system-ui, -apple-system, Tahoma, Geneva, Verdana, sans-serif;
    background: #0b1319;
    color: #e0e6ed;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    text-align: left;
    line-height: 1.8;
    font-size: 1.15rem;
}

/* 1. TOP NAVIGATION HEADER STYLING */
.top-navbar {
    background: rgba(11, 19, 25, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
    box-sizing: border-box;
}

.nav-item {
    position: relative;
    display: inline-block;
}

.nav-btn {
    background: none;
    border: none;
    color: #4fc3f7;
    font-weight: bold;
    font-size: 1.05rem;
    padding: 10px 18px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.nav-btn:hover {
    background: rgba(79, 195, 247, 0.15);
    color: #ffffff;
}

/* Dropdown Content */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #101c24;
    border: 1px solid rgba(79, 195, 247, 0.4);
    border-radius: 8px;
    min-width: 240px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    z-index: 1001;
    padding: 12px 0;
    text-align: left;
}

.nav-item:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    color: #cfd8dc;
    padding: 12px 24px;
    text-decoration: none;
    display: block;
    font-size: 1rem;
    transition: all 0.2s;
}

.dropdown-menu a:hover {
    background: rgba(79, 195, 247, 0.2);
    color: #ffb300;
    padding-left: 28px;
}

/* Search Bar Styling */
.search-container {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(79, 195, 247, 0.4);
    border-radius: 20px;
    padding: 4px 14px;
}

.search-input {
    background: transparent;
    border: none;
    color: #ffffff;
    padding: 8px 12px;
    font-size: 1rem;
    outline: none;
    width: 200px;
}

.search-btn {
    background: none;
    border: none;
    color: #4fc3f7;
    cursor: pointer;
    font-size: 1.1rem;
}

/* 2. MAIN BRAND HEADER & HERO SECTION */
.container {
    max-width: 96%;
    margin: 0 auto;
    padding: 30px 20px;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}

h1 {
    font-size: 4.2rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(to right, #ffffff, #4fc3f7);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.tagline {
    font-size: 1.5rem;
    color: #b0bec5;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

/* Status Badge */
.badge {
    background: linear-gradient(90deg, #ff8c00 0%, #ffb300 100%);
    color: white;
    padding: 10px 28px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.05rem;
    display: inline-block;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(255, 140, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 3. CLEAN SECTIONS */
.section-clean, .full-page-section {
    width: 100%;
    margin: 0 auto 40px auto;
    padding: 40px 10px;
    text-align: left;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
    box-sizing: border-box;
}

.section-clean h2, .full-page-section h2 {
    color: #4fc3f7;
    font-size: 2.6rem;
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    color: #ffb300;
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.section-text, .full-page-section p, p {
    font-size: 1.2rem;
    color: #d1d5db;
    margin: 0 0 22px 0;
    line-height: 1.8;
}

/* VENTURE & PROJECTS GRID */
.venture-grid, .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 35px;
    margin-top: 35px;
    width: 100%;
}

.venture-item, .card {
    background: rgba(255, 255, 255, 0.02);
    border: none;
    border-left: 4px solid #ff8c00;
    padding: 20px 25px;
    text-align: left;
    box-shadow: none;
    border-radius: 0 12px 12px 0;
    transition: all 0.3s ease;
}

.venture-item:hover, .card:hover {
    transform: translateX(8px);
    background: rgba(79, 195, 247, 0.05);
    border-left-color: #4fc3f7;
}

.venture-item h3, .card h3 {
    color: #ffffff;
    margin: 0 0 12px 0;
    font-size: 1.5rem;
}

.venture-item p, .card p {
    color: #b0bec5;
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.7;
}

/* 4. FOOTER & CONTACT STYLING */
.email-section {
    margin: 30px 0 15px 0; 
    font-size: 1.1rem; 
    display: inline-block; 
    padding: 12px 28px; 
    border-radius: 30px; 
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.03);
}

.email-link {
    color: #4fc3f7; 
    text-decoration: none; 
    font-weight: bold; 
    margin-left: 5px;
}

.email-link:hover {
    color: #ffb300;
}

.copyright {
    font-size: 0.95rem; 
    color: #90a4ae; 
    margin-bottom: 30px;
}

/* 5. FLOATING POPUP MODAL & SCROLLING TICKER STYLING */
.news-ticker-wrapper {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(79, 195, 247, 0.4);
    border-radius: 30px;
    padding: 12px 25px;
    width: 100%;
    margin: 20px auto 30px auto;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.ticker-label {
    background: #ff3d00;
    color: #fff;
    font-size: 0.9rem;
    font-weight: bold;
    padding: 6px 14px;
    border-radius: 15px;
    margin-right: 20px;
    white-space: nowrap;
}

.ticker-content {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
}

.ticker-link {
    color: #eceff1;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: bold;
    display: inline-block;
    animation: tickerScroll 15s linear infinite;
}

.ticker-link:hover {
    color: #4fc3f7;
}

@keyframes tickerScroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Modal Popup Window */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

.modal-box {
    background: #101c24;
    border: 1px solid rgba(79, 195, 247, 0.5);
    border-radius: 16px;
    width: 100%;
    max-width: 750px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
    overflow: hidden;
}

.modal-header {
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: #4fc3f7;
    font-size: 1.35rem;
}

.close-modal-btn {
    background: transparent;
    border: none;
    color: #ff5252;
    font-size: 1.4rem;
    cursor: pointer;
}

.modal-body {
    padding: 25px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.update-card-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 18px;
    text-align: left;
}

.update-badge {
    color: #000;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 3px 10px;
    border-radius: 6px;
    text-transform: uppercase;
}

.update-card-item h4 {
    color: #ffffff;
    margin: 10px 0 8px 0;
    font-size: 1.15rem;
}

.update-card-item p {
    color: #b0bec5;
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

.modal-action-btn {
    display: inline-block;
    background: rgba(79, 195, 247, 0.15);
    border: 1px solid #4fc3f7;
    color: #4fc3f7;
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    font-size: 0.9rem;
    cursor: pointer;
}

.modal-action-btn:hover {
    background: #4fc3f7;
    color: #000;
}

/* Notification Button Glow & Badge Effect */
.notif-btn {
    color: #ffb300 !important;
    transition: transform 0.2s ease, color 0.2s ease;
}

.notif-btn:hover {
    transform: scale(1.1);
    color: #ffffff !important;
}

.notif-badge {
    background: #ff3d00;
    color: #fff;
    font-size: 0.65rem;
    padding: 3px 6px;
    border-radius: 8px;
    font-weight: bold;
    position: relative;
    top: -8px;
    left: -2px;
}

/* 6. RESPONSIVE DESIGN & MOBILE OPTIMIZATION */
img, svg, video {
    max-width: 100%;
    height: auto;
}

@media screen and (max-width: 992px) {
    h1 { font-size: 3rem; }
    .container { max-width: 98%; padding: 15px; }
    .venture-grid { grid-template-columns: 1fr; }
}

@media screen and (max-width: 768px) {
    .top-navbar {
        padding: 12px 15px;
        gap: 10px;
        justify-content: center;
    }

    .nav-btn {
        font-size: 0.9rem;
        padding: 8px 12px;
    }

    .dropdown-menu {
        position: fixed;
        top: 60px;
        left: 5%;
        right: 5%;
        width: 90%;
        transform: none;
        max-height: 70vh;
        overflow-y: auto;
    }

    .search-container {
        width: 100%;
        margin-left: 0;
        margin-top: 5px;
        justify-content: space-between;
    }

    .search-input {
        width: 85%;
    }

    h1 {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.15rem;
    }

    .badge {
        font-size: 0.9rem;
        padding: 8px 20px;
    }

    .section-clean, .full-page-section {
        padding: 30px 15px;
    }

    .section-clean h2, .full-page-section h2 {
        font-size: 1.9rem;
    }

    .section-text, .full-page-section p, p {
        font-size: 1.05rem;
    }

    .email-section {
        width: 100%;
        word-break: break-all;
        padding: 10px 15px;
        font-size: 0.95rem;
        box-sizing: border-box;
    }
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    .nav-btn {
        font-size: 0.8rem;
        padding: 6px 10px;
    }
}
