/* ==========================================================================
   CHANDER PARKASH & COMPANY - MASTER STYLESHEET (RESTORED EFFECTS & GLOW)
   ========================================================================== */

/* --- Global Styles & Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    background-color: #ffffff;
    color: #333333;
}

img, video, canvas, svg {
    max-width: 100%;
    height: auto;
}

table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* --- Header & Navigation --- */
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #0b1c3d;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.official-ca-logo {
    height: 45px;
    width: auto;
    margin-right: 12px;
}

.brand-name {
    font-weight: 700;
    font-size: 1.25rem;
    color: #ffffff !important;
    letter-spacing: 0.5px;
}

.navbar ul {
    list-style: none;
    display: flex;
    align-items: center;
}

.navbar ul li {
    position: relative;
    margin-left: 20px;
}

.navbar ul li a.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 12px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.navbar ul li a.nav-link:hover,
.navbar ul li a.nav-link.active {
    color: #c5a059;
}

/* --- Dropdown Menus --- */
.navbar ul li ul.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #0b1c3d;
    min-width: 240px;
    box-shadow: 0px 8px 20px rgba(0,0,0,0.3);
    border-top: 2px solid #c5a059;
    display: none;
    flex-direction: column;
    padding: 10px 0;
    z-index: 1100;
}

.navbar ul li:hover > ul.dropdown {
    display: flex;
}

.navbar ul li ul.dropdown li {
    margin: 0;
    width: 100%;
}

.navbar ul li ul.dropdown li a {
    color: #ffffff;
    padding: 10px 20px;
    display: block;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.navbar ul li ul.dropdown li a:hover {
    background: #142850;
    color: #c5a059;
}

/* Sub-dropdown */
.navbar ul li ul.dropdown li ul.sub-dropdown {
    position: absolute;
    top: 0;
    left: 100%;
    background: #0b1c3d;
    border-top: 2px solid #c5a059;
    box-shadow: 0px 8px 20px rgba(0,0,0,0.3);
    display: none;
    min-width: 240px;
    max-height: 400px;
    overflow-y: auto;
    flex-direction: column;
    padding: 10px 0;
    z-index: 1200;
}

.navbar ul li ul.dropdown li:hover > ul.sub-dropdown {
    display: flex;
}

/* --- Ticker Bars (ET News & Stock Tickers) --- */
.news-trigger-bar {
    background-color: #0b1c3d !important;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    overflow: hidden !important;
    padding: 8px 0 !important;
}

.news-badge {
    background: #c5a059 !important;
    color: #0b1c3d !important;
    font-weight: 700 !important;
    padding: 4px 12px !important;
    font-size: 12px !important;
    letter-spacing: 1px;
    flex-shrink: 0 !important;
    margin-left: 15px;
    margin-right: 15px;
    border-radius: 2px;
}

.news-ticker-container, 
.stock-ticker-container {
    background-color: #0b1c3d !important;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    overflow: hidden !important;
    white-space: nowrap !important;
    width: 100% !important;
    padding: 10px 0 !important;
    flex-grow: 1 !important;
}

.news-ticker-track, 
.stock-ticker-track {
    display: inline-block !important;
    white-space: nowrap !important;
    animation: tickerScroll 30s linear infinite;
}

.news-ticker-track span {
    color: #ffffff !important;
    font-size: 13px;
    margin-right: 25px;
}

.stock-item {
    display: inline-flex !important;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 14px;
    margin-right: 20px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stock-name {
    color: #ffffff;
    font-weight: 600;
    font-size: 13px;
    margin-right: 8px;
    letter-spacing: 0.5px;
}

.stock-price {
    color: #e0e0e0;
    font-weight: 500;
    font-size: 13px;
    margin-right: 8px;
}

.stock-change.positive {
    color: #28a745 !important;
    font-weight: 600;
    font-size: 12px;
}

.stock-change.negative {
    color: #dc3545 !important;
    font-weight: 600;
    font-size: 12px;
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.stock-ticker-container:hover .stock-ticker-track,
.news-ticker-container:hover .news-ticker-track {
    animation-play-state: paused;
}

/* --- Hero Section --- */
.hero {
    height: 85vh;
    background: linear-gradient(90deg, rgba(11, 28, 61, 0.88) 38%, rgba(11, 28, 61, 0.35) 75%), url('images/hero.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 0 8%;
    color: #ffffff;
}

.hero-content {
    max-width: 650px;
}

.hero-subtitle {
    color: #c5a059;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #d1d5db;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-gold {
    background-color: #c5a059;
    color: #0b1c3d;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-gold:hover {
    background-color: #b08d4c;
}

.btn-outline {
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 10px 26px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-outline:hover {
    background-color: #ffffff;
    color: #0b1c3d;
}

/* --- Common Section Styling --- */
section {
    padding: 90px 8%;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: #c5a059;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 36px;
    color: #0b1c3d;
    font-weight: 700;
}

.section-desc {
    color: #94a3b8;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- About Section (With Glow & Reflection Effects) --- */
.about-section {
    background: #0b1c3d;
    position: relative;
    padding: 100px 8%;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-text h2 {
    font-size: 42px;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 22px;
}

.about-text .lead-text {
    font-size: 17px;
    color: #e2e8f0;
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-text p {
    color: #94a3b8;
    line-height: 1.8;
    font-size: 15px;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 26px 30px;
    border-radius: 12px;
    border: 1px solid rgba(197, 160, 89, 0.25);
    display: flex;
    align-items: center;
    gap: 24px;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.highlight-box:hover {
    transform: translateY(-6px);
    background: rgba(197, 160, 89, 0.07);
    border-color: #c5a059;
    box-shadow: 0 20px 40px rgba(197, 160, 89, 0.15);
}

.highlight-box i {
    font-size: 26px;
    color: #0b1c3d;
    background: #c5a059;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.3);
}

.highlight-box:hover i {
    background: #ffffff;
    color: #0b1c3d;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.4);
}

.highlight-box h4 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}

.highlight-box p {
    color: #94a3b8;
    font-size: 14px;
    margin: 0;
}

/* --- Services Section (With Hover Glow & Reflection) --- */
.services-section {
    background: #0b1c3d;
    padding: 60px 8%;
    position: relative;
}

.services-section .section-header {
    text-align: center;
    margin-bottom: 30px;
}

.services-section .section-header h2 {
    font-size: 38px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 15px;
}

.modern-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 12px;
    padding: 35px 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.service-card-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #c5a059;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card-item:hover {
    transform: translateY(-8px);
    background: rgba(197, 160, 89, 0.06);
    border-color: #c5a059;
    box-shadow: 0 20px 40px rgba(197, 160, 89, 0.2);
}

.service-card-item:hover::before {
    transform: scaleX(1);
}

.service-card-item i {
    font-size: 32px;
    color: #0b1c3d;
    background: #c5a059;
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.3);
}

.service-card-item:hover i {
    background: #ffffff;
    color: #0b1c3d;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

.service-card-item h4 {
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

/* --- Industries Section --- */
.industries-section {
    background: #0b1c3d;
    padding: 100px 8%;
    position: relative;
}

.industries-section .section-header h2 {
    font-size: 38px;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.industry-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px 25px;
    border-radius: 12px;
    border: 1px solid rgba(197, 160, 89, 0.25);
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #c5a059;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.industry-card:hover {
    transform: translateY(-8px);
    background: rgba(197, 160, 89, 0.07);
    border-color: #c5a059;
    box-shadow: 0 20px 40px rgba(197, 160, 89, 0.2);
}

.industry-card:hover::before {
    transform: scaleX(1);
}

.industry-card i {
    font-size: 32px;
    color: #0b1c3d;
    background: #c5a059;
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.3);
}

.industry-card:hover i {
    background: #ffffff;
    color: #0b1c3d;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

.industry-card h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

/* --- Team Section --- */
.team-section {
    background: #0b1c3d;
    padding: 100px 8%;
    position: relative;
}

.team-section .section-header h2 {
    font-size: 38px;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.team-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(197, 160, 89, 0.25);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #c5a059;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    background: rgba(197, 160, 89, 0.06);
    border-color: #c5a059;
    box-shadow: 0 20px 40px rgba(197, 160, 89, 0.2);
}

.team-card:hover::before {
    transform: scaleX(1);
}

.team-monogram {
    width: 90px;
    height: 90px;
    background: #c5a059;
    color: #0b1c3d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 25px auto;
    box-shadow: 0 10px 25px rgba(197, 160, 89, 0.3);
    transition: all 0.4s ease;
}

.team-card:hover .team-monogram {
    background: #ffffff;
    color: #0b1c3d;
    transform: scale(1.08);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.4);
}

.team-info h3 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.team-role {
    color: #c5a059;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.team-info p {
    color: #94a3b8;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* --- Contact Section (Absolute Original Match Fix) --- */
.contact-section {
    background: #0b1c3d;
    padding: 100px 8%;
    position: relative;
}

.contact-section .section-header h2 {
    font-size: 38px;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.contact-info-box, 
.contact-form-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(197, 160, 89, 0.25);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.contact-info-box h3, 
.contact-form-box h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 22px;
    color: #e2e8f0;
    font-size: 15px;
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateX(5px);
}

.info-item i {
    width: 45px;
    height: 45px;
    background: rgba(197, 160, 89, 0.1);
    color: #c5a059;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 18px;
    border: 1px solid rgba(197, 160, 89, 0.2);
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.15);
}

.info-item:hover i {
    background: #c5a059;
    color: #0b1c3d;
    box-shadow: 0 6px 18px rgba(197, 160, 89, 0.4);
}

.info-content p {
    margin: 0;
    line-height: 1.6;
    color: #cbd5e1;
}

/* Force WhatsApp Link to look like the Original Green Button */
.contact-info-box > a,
.contact-info-box p > a {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    background-color: #25d366 !important;
    color: #ffffff !important;
    padding: 12px 24px !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    margin-top: 15px !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3) !important;
    transition: all 0.3s ease !important;
}

.contact-info-box > a:hover,
.contact-info-box p > a:hover {
    background-color: #20ba5a !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5) !important;
    color: #ffffff !important;
}

/* Form Fields Styling */
.advanced-form input,
.advanced-form select,
.advanced-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #ffffff;
    font-size: 15px;
    outline: none;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.advanced-form input:focus,
.advanced-form select:focus,
.advanced-form textarea:focus {
    border-color: #c5a059;
    background: rgba(197, 160, 89, 0.05);
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.25);
}

.advanced-form select option {
    background: #0b1c3d;
    color: #ffffff;
}

.btn-gold-submit {
    width: 100%;
    background: #c5a059;
    color: #0b1c3d;
    padding: 14px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.2);
}

.btn-gold-submit:hover {
    background: #b08d4c;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(197, 160, 89, 0.4);
}
/* --- Footer --- */
.footer-section {
    background: #071328;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
    padding: 30px 8%;
    text-align: center;
}

.footer-section p {
    color: #94a3b8;
    font-size: 14px;
}

.footer-branding {
    color: #c5a059 !important;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
}

#bulletinModal {
    display: none;
}

/* --- Responsive Media Queries --- */
@media screen and (max-width: 1024px) {
    .modern-services-grid,
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: stretch;
    }
    .logo-wrapper {
        justify-content: space-between;
        width: 100%;
    }
    .navbar ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #0b1c3d;
        position: absolute;
        top: 100%;
        left: 0;
        padding: 20px 0;
    }
    .about-grid,
    .modern-services-grid,
    .industries-grid,
    .team-grid,
    .contact-grid {
        grid-current-columns: 1fr !important;
        grid-template-columns: 1fr !important;
    }
}
/* --- Contact Section Styles --- */
.contact-section {
    background: #0b1c3d;
    padding: 100px 8%;
    position: relative;
}

.contact-section .section-header h2 {
    font-size: 38px;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.contact-info-box, 
.contact-form-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(197, 160, 89, 0.25);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.contact-info-box h3, 
.contact-form-box h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
}

.company-sub {
    color: #c5a059;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 22px;
    color: #e2e8f0;
    font-size: 15px;
}

.info-item i {
    width: 45px;
    height: 45px;
    background: rgba(197, 160, 89, 0.1);
    color: #c5a059;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 18px;
    border: 1px solid rgba(197, 160, 89, 0.2);
    flex-shrink: 0;
}

.info-item strong {
    color: #ffffff;
}

/* WhatsApp Button Styling */
.whatsapp-box {
    margin-top: 25px;
}

.whatsapp-btn-inline {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    background-color: #25d366 !important;
    color: #ffffff !important;
    padding: 12px 24px !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3) !important;
    transition: all 0.3s ease !important;
}

.whatsapp-btn-inline:hover {
    background-color: #20ba5a !important;
    transform: translateY(-2px) !important;
}

/* Form Fields Styling */
.advanced-form input,
.advanced-form select,
.advanced-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #ffffff;
    font-size: 15px;
    outline: none;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.advanced-form input:focus,
.advanced-form select:focus,
.advanced-form textarea:focus {
    border-color: #c5a059;
    background: rgba(197, 160, 89, 0.05);
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.25);
}

.advanced-form select option {
    background: #0b1c3d;
    color: #ffffff;
}

.btn-gold-submit {
    width: 100%;
    background: #c5a059;
    color: #0b1c3d;
    padding: 14px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.2);
}

.btn-gold-submit:hover {
    background: #b08d4c;
    transform: translateY(-2px);
}
/* --- Mobile Responsive Fixes --- */
@media screen and (max-width: 992px) {
    .hero {
        padding: 0 5%;
        height: auto;
        min-height: 75vh;
        background-position: center;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .contact-grid {
        grid-template-columns: 1fr !important;
    }
}

@media screen and (max-width: 768px) {
    section {
        padding: 60px 5%;
    }

    .hero-content h1 {
        font-size: 28px;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .hero-buttons a {
        text-align: center;
    }

    .about-grid,
    .modern-services-grid,
    .industries-grid,
    .team-grid {
        grid-template-columns: 1fr !important;
    }

    .contact-info-box, 
    .contact-form-box {
        padding: 25px 20px;
    }
}
/* --- Mobile View Header & Ticker Fixes --- */
@media screen and (max-width: 992px) {
    .nav-container {
        padding: 10px 15px;
    }
    
    .news-trigger-bar, 
    .stock-ticker-container {
        width: 100% !important;
        overflow: hidden !important;
    }

    .news-badge {
        margin-left: 5px;
        margin-right: 5px;
        padding: 2px 8px !important;
        font-size: 10px !important;
    }

    .hero {
        padding: 0 5%;
        height: auto;
        min-height: 70vh;
    }

    .hero-content h1 {
        font-size: 32px;
    }
}
/* ================================================================= */
/* ENTERPRISE RESPONSIVE FRAMEWORK (EY / BIG-4 STYLE FLUID LAYOUT)  */
/* ================================================================= */

@media screen and (max-width: 1024px) {
    /* Global Container Padding Adjustments */
    .section-container, 
    .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    /* Navigation & Top Bars Stacking */
    .nav-container {
        flex-direction: column;
        gap: 12px;
        padding: 15px 20px;
    }

    .stock-ticker-container, 
    .news-trigger-bar {
        width: 100% !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
    }

    /* Hero Section Fluid Scaling */
    .hero {
        height: auto !important;
        min-height: 80vh !important;
        padding: 80px 20px !important;
        display: flex;
        align-items: center;
        text-align: center;
    }

    .hero-content {
        max-width: 100% !important;
    }

    .hero-content h1 {
        font-size: 32px !important;
        line-height: 1.2 !important;
    }

    .hero-content p {
        font-size: 15px !important;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Force All Grids to Stack Single Column */
    .about-grid,
    .modern-services-grid,
    .industries-grid,
    .team-grid,
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
}

@media screen and (max-width: 768px) {
    /* Typography & Spacing Reduction for Mobile */
    body {
        font-size: 14px;
        overflow-x: hidden;
    }

    section {
        padding: 50px 15px !important;
    }

    h1 { font-size: 28px !important; }
    h2 { font-size: 24px !important; }
    h3 { font-size: 20px !important; }

    /* Hero Buttons Full Width for Easy Tap */
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .hero-buttons a, 
    .btn-gold-submit {
        width: 100% !important;
        text-align: center !important;
        box-sizing: border-box;
    }

    /* Contact Form Box Padding Optimization */
    .contact-info-box, 
    .contact-form-box {
        padding: 20px 15px !important;
        border-radius: 8px;
    }

    /* Map Responsive Fix */
    .map-container iframe {
        height: 280px !important;
        border-radius: 8px;
    }
}

/* Prevent horizontal overflow globally */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

.calc-modal-overlay {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 99999;
}


.calc-modal-content {
    background-color: #111;
    color: #fff;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #c5a059;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    position: relative;
}

.calc-modal-overlay, #gstMrpModal, #gstRateModal, #gstCalcModal, #taxCalcModal, #tdsCalcModal, #netProfitModal, #netWorthModal, #effectiveCapitalModal, #hraModal, #nscModal, #emiModal, #bulletinModal, #utilityModal {
    display: none;
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.85) !important;
    justify-content: center !important;
    align-items: center !important;
    z-index: 999999 !important;
}


.calc-modal-content {
    background-color: #111 !important;
    color: #fff !important;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #c5a059;
    width: 90%;
    max-width: 500px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    position: relative;
}
/* Saare modals ke liye universal popup styling */
.calc-modal-overlay, #gstMrpModal, #gstRateModal, #gstCalcModal, #taxCalcModal, #tdsCalcModal, #netProfitModal, #netWorthModal, #effectiveCapitalModal, #hraModal, #nscModal, #emiModal, #bulletinModal, #utilityModal {
    display: none !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background-color: rgba(0, 0, 0, 0.85) !important;
    z-index: 999999 !important;
    justify-content: center !important;
    align-items: center !important;
}

/* Jab JavaScript se modal open ho toh flex active ho */
.calc-modal-overlay[style*="block"], 
#gstMrpModal[style*="block"], #gstRateModal[style*="block"], #gstCalcModal[style*="block"], 
#taxCalcModal[style*="block"], #tdsCalcModal[style*="block"], #netProfitModal[style*="block"], 
#netWorthModal[style*="block"], #effectiveCapitalModal[style*="block"], #hraModal[style*="block"], 
#nscModal[style*="block"], #emiModal[style*="block"], #bulletinModal[style*="block"], #utilityModal[style*="block"],
.calc-modal-overlay[style*="flex"], 
#gstMrpModal[style*="flex"], #gstRateModal[style*="flex"], #gstCalcModal[style*="flex"], 
#taxCalcModal[style*="flex"], #tdsCalcModal[style*="flex"], #netProfitModal[style*="flex"], 
#netWorthModal[style*="flex"], #effectiveCapitalModal[style*="flex"], #hraModal[style*="flex"], 
#nscModal[style*="flex"], #emiModal[style*="flex"], #bulletinModal[style*="flex"], #utilityModal[style*="flex"] {
    display: flex !important;
}

/* Modal Content Box Design */
.calc-modal-content {
    background-color: #111 !important;
    color: #fff !important;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #c5a059;
    width: 90%;
    max-width: 600px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.9);
    position: relative;
    margin: auto;
}
/* Bulletin aur Utilities modals ke liye exact calculators jaisi styling */
#bulletinModal, #utilityModal {
    display: none !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background-color: rgba(0, 0, 0, 0.8) !important;
    z-index: 999999 !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 20px !important;
    box-sizing: border-box !important;
}

#bulletinModal .calc-modal-content, #utilityModal .calc-modal-content {
    background-color: #161b22 !important;
    color: #ffffff !important;
    padding: 30px !important;
    border-radius: 10px !important;
    border: 1px solid #c5a059 !important;
    width: 100% !important;
    max-width: 750px !important;
    max-height: 85vh !important;
    overflow-y: auto !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.9) !important;
    position: relative !important;
    box-sizing: border-box !important;
    margin: auto !important;
}

#bulletinSearch, #utilitySearch {
    width: 100% !important;
    padding: 10px 12px !important;
    background-color: #0d1117 !important;
    border: 1px solid #30363d !important;
    border-radius: 6px !important;
    color: #fff !important;
    margin-bottom: 15px !important;
    box-sizing: border-box !important;
}

#bulletinModal table, #utilityModal table {
    width: 100% !important;
    border-collapse: collapse !important;
    margin-top: 10px !important;
}

#bulletinModal th, #bulletinModal td, #utilityModal th, #utilityModal td {
    padding: 12px !important;
    border-bottom: 1px solid #30363d !important;
    text-align: left !important;
    color: #ddd !important;
    font-size: 14px !important;
}

#bulletinModal a, #utilityModal a {
    color: #c5a059 !important;
    text-decoration: none !important;
}
/* Clean & Professional Centered Modal Overlay */
.calc-modal-overlay, #gstMrpModal, #gstRateModal, #gstCalcModal, #taxCalcModal, #tdsCalcModal, #netProfitModal, #netWorthModal, #effectiveCapitalModal, #hraModal, #nscModal, #emiModal, #bulletinModal, #utilityModal {
    display: none !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background-color: rgba(0, 0, 0, 0.8) !important;
    z-index: 999999 !important;
    justify-content: center !important;
    align-items: center !important;
}

/* Modal Content Box - Premium Look */
.calc-modal-content {
    background-color: #161b22 !important;
    color: #ffffff !important;
    padding: 35px !important;
    border-radius: 10px !important;
    border: 1px solid #c5a059 !important;
    width: 90% !important;
    max-width: 480px !important;
    max-height: 85vh !important;
    overflow-y: auto !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.9) !important;
    position: relative !important;
    box-sizing: border-box !important;
}

/* Header Styling inside Modal */
.calc-modal-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 20px !important;
    border-bottom: 1px solid #333 !important;
    padding-bottom: 10px !important;
}

.calc-modal-header h3 {
    margin: 0 !important;
    color: #c5a059 !important;
    font-size: 20px !important;
}

/* Close Button Styling */
.calc-close-btn {
    background: transparent !important;
    border: none !important;
    color: #fff !important;
    font-size: 24px !important;
    cursor: pointer !important;
    padding: 0 !important;
    line-height: 1 !important;
}
.calc-close-btn:hover {
    color: #c5a059 !important;
}

/* Form Groups & Inputs Styling */
.calc-form-group {
    margin-bottom: 15px !important;
}

.calc-form-group label {
    display: block !important;
    margin-bottom: 6px !important;
    font-size: 14px !important;
    color: #ccc !important;
}

.calc-form-group input, 
.calc-form-group select {
    width: 100% !important;
    padding: 10px 12px !important;
    background-color: #0d1117 !important;
    border: 1px solid #30363d !important;
    border-radius: 6px !important;
    color: #fff !important;
    font-size: 15px !important;
    box-sizing: border-box !important;
}

.calc-form-group input:focus, 
.calc-form-group select:focus {
    border-color: #c5a059 !important;
    outline: none !important;
}
/* Bulletin aur Utilities Modal ka final perfect fix */
#bulletinModal, #utilityModal {
    display: none !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background-color: rgba(0, 0, 0, 0.8) !important;
    z-index: 999999 !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 20px !important;
    box-sizing: border-box !important;
}

#bulletinModal .calc-modal-content, #utilityModal .calc-modal-content {
    background-color: #161b22 !important;
    color: #ffffff !important;
    padding: 30px !important;
    border-radius: 10px !important;
    border: 1px solid #c5a059 !important;
    width: 100% !important;
    max-width: 800px !important;
    max-height: 85vh !important;
    overflow-y: auto !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.9) !important;
    position: relative !important;
    box-sizing: border-box !important;
    margin: auto !important;
}

/* Close button ko upar right corner mein fix karne ke liye */
#bulletinModal .calc-close-btn, #utilityModal .calc-close-btn {
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;
    background: transparent !important;
    border: none !important;
    color: #fff !important;
    font-size: 24px !important;
    cursor: pointer !important;
    line-height: 1 !important;
}

#bulletinModal .calc-close-btn:hover, #utilityModal .calc-close-btn:hover {
    color: #c5a059 !important;
}

/* Title aur Search box spacing */
#modalTitle, #utilityModalTitle {
    color: #c5a059 !important;
    font-size: 20px !important;
    margin-top: 0 !important;
    margin-bottom: 20px !important;
    padding-right: 30px !important;
}

#bulletinSearch, #utilitySearch {
    width: 100% !important;
    padding: 10px 12px !important;
    background-color: #0d1117 !important;
    border: 1px solid #30363d !important;
    border-radius: 6px !important;
    color: #fff !important;
    margin-bottom: 15px !important;
    box-sizing: border-box !important;
}

#bulletinModal table, #utilityModal table {
    width: 100% !important;
    border-collapse: collapse !important;
    margin-top: 10px !important;
}

#bulletinModal th, #bulletinModal td, #utilityModal th, #utilityModal td {
    padding: 12px !important;
    border-bottom: 1px solid #30363d !important;
    text-align: left !important;
    color: #ddd !important;
    font-size: 14px !important;
}

#bulletinModal a, #utilityModal a {
    color: #c5a059 !important;
    text-decoration: none !important;
}

#bulletinModal, #utilityModal {
    display: none !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background-color: rgba(0, 0, 0, 0.85) !important;
    z-index: 999999 !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 20px !important;
    box-sizing: border-box !important;
}


#bulletinModal > div, #utilityModal > div {
    background-color: #161b22 !important;
    color: #ffffff !important;
    padding: 30px !important;
    border-radius: 10px !important;
    border: 1px solid #c5a059 !important;
    width: 100% !important;
    max-width: 750px !important;
    max-height: 85vh !important;
    overflow-y: auto !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.9) !important;
    position: relative !important;
    box-sizing: border-box !important;
    margin: auto !important;
}


#bulletinModal .close-btn, #utilityModal .close-btn,
#bulletinModal [onclick*="Modal"], #utilityModal [onclick*="Modal"] {
    position: absolute !important;
    top: 15px !important;
    right: 20px !important;
    background: transparent !important;
    border: none !important;
    color: #fff !important;
    font-size: 26px !important;
    cursor: pointer !important;
    z-index: 10 !important;
}

#bulletinModal .close-btn:hover, #utilityModal .close-btn:hover {
    color: #c5a059 !important;
}

/* Title styling */
#modalTitle, #utilityModalTitle {
    color: #c5a059 !important;
    font-size: 20px !important;
    margin-top: 0 !important;
    margin-bottom: 20px !important;
    padding-right: 40px !important;
    border-bottom: 1px solid #333 !important;
    padding-bottom: 10px !important;
}

/* Search bar aur table styling */
#bulletinSearch, #utilitySearch {
    width: 100% !important;
    padding: 10px 12px !important;
    background-color: #0d1117 !important;
    border: 1px solid #30363d !important;
    border-radius: 6px !important;
    color: #fff !important;
    margin-bottom: 15px !important;
    box-sizing: border-box !important;
}

#bulletinModal table, #utilityModal table {
    width: 100% !important;
    border-collapse: collapse !important;
    margin-top: 10px !important;
}

#bulletinModal th, #bulletinModal td, #utilityModal th, #utilityModal td {
    padding: 12px !important;
    border-bottom: 1px solid #30363d !important;
    text-align: left !important;
    color: #ddd !important;
    font-size: 14px !important;
}

#bulletinModal a, #utilityModal a {
    color: #c5a059 !important;
    text-decoration: none !important;
}
@media (max-width: 900px) {
  .hero-section {
    flex-direction: column !important;
  }
}
@media (max-width: 900px) {
  .hero-section {
    flex-direction: column !important;
    text-align: center !important;
    padding: 40px 20px !important;
    height: auto !important;
  }
  
  .hero-section h1 {
    font-size: 28px !important;
    line-height: 1.2 !important;
  }

  .hero-section p {
    font-size: 14px !important;
  }
}
@media (max-width: 900px) {
  .hero {
    flex-direction: column !important;
    text-align: center !important;
    height: auto !important;
    padding: 50px 20px !important;
  }
  
  .hero-content {
    max-width: 100% !important;
    padding: 0 !important;
  }

  .hero h1 {
    font-size: 28px !important;
    line-height: 1.3 !important;
  }
  
  .hero-buttons {
    justify-content: center !important;
  }
}
/* Hamburger Button Default (Hidden on Desktop) */
.menu-toggle {
  display: none;
  cursor: pointer;
}

.menu-toggle .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: #ffffff;
  transition: all 0.3s ease;
}

/* Mobile Screen Styling */
@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 70px;
    left: 0;
    background-color: #0c1a2e;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 5px 10px rgba(0,0,0,0.3);
  }

  
  .navbar ul.active {
    display: flex;
  }
}
@media (max-width: 900px) {
  .nav-container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    position: relative !important;
  }

  .menu-toggle {
    display: block !important;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }

  .navbar ul {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #0c1a2e;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 5px 10px rgba(0,0,0,0.3);
    z-index: 1000;
  }

  .navbar ul.active {
    display: flex !important;
  }
}
.contact-info-box a, .info-item a {
  color: #ffffff;
  text-decoration: none;
}

.contact-info-box a:hover {
  text-decoration: underline;
}