/* ===== BEAUTIFUL AWARDS SLIDESHOW ===== */
.slideshow-container {
    max-width: 950px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
}

.slide-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.slide-frame {
    position: relative;
    background: linear-gradient(135deg, #8B4513 0%, #b8860b 15%, #ffd700 30%, #daa520 50%, #ffd700 70%, #b8860b 85%, #8B4513 100%);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 
        0 0 0 3px #5c3a21,
        0 0 0 6px #8b6914,
        0 0 0 10px #daa520,
        0 20px 60px rgba(139, 69, 19, 0.6),
        0 10px 30px rgba(0,0,0,0.5),
        inset 0 4px 8px rgba(255,255,255,0.7),
        inset 0 -3px 6px rgba(0,0,0,0.3);
    animation: premiumGlow 4s ease-in-out infinite alternate;
}

/* Inner matted border - cream colored like certificate frame */
.slide-frame::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    background: linear-gradient(135deg, #fffef5, #f5f0e1, #fffef5);
    border-radius: 8px;
    box-shadow: 
        inset 0 0 15px rgba(139, 69, 19, 0.2),
        inset 0 2px 4px rgba(0,0,0,0.1);
    z-index: 0;
}

/* Gold corner accents */
.slide-frame::after {
    content: '🏆';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    z-index: 5;
}

@keyframes premiumGlow {
    0% { 
        box-shadow: 
            0 0 0 3px #5c3a21,
            0 0 0 6px #8b6914,
            0 0 0 10px #daa520,
            0 20px 60px rgba(139, 69, 19, 0.5),
            0 10px 30px rgba(0,0,0,0.4),
            inset 0 4px 8px rgba(255,255,255,0.6),
            inset 0 -3px 6px rgba(0,0,0,0.2);
    }
    100% { 
        box-shadow: 
            0 0 0 3px #8B4513,
            0 0 0 6px #b8860b,
            0 0 0 10px #ffd700,
            0 25px 80px rgba(255, 215, 0, 0.5),
            0 15px 40px rgba(0,0,0,0.5),
            inset 0 4px 8px rgba(255,255,255,0.9),
            inset 0 -3px 6px rgba(0,0,0,0.3);
    }
}

.slide-image {
    position: relative;
    z-index: 1;
    width: 520px;
    height: 420px;
    object-fit: contain;
    display: block;
    border-radius: 6px;
    transition: opacity 0.4s ease-in-out, transform 0.3s ease;
    background: linear-gradient(145deg, #ffffff, #faf9f6, #f5f0e6);
    border: 4px solid #fff;
    box-shadow: 
        0 0 0 2px #daa520,
        inset 0 0 30px rgba(139, 69, 19, 0.08),
        0 4px 15px rgba(0,0,0,0.15);
}

.slide-image:hover {
    transform: scale(1.02);
}

.slide-counter {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #2c5364, #203a43, #0f2027);
    color: #ffd700;
    padding: 12px 32px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.05rem;
    letter-spacing: 2px;
    border: 3px solid #ffd700;
    box-shadow: 
        0 5px 20px rgba(0,0,0,0.4),
        inset 0 1px 2px rgba(255,215,0,0.3);
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.slide-nav {
    background: linear-gradient(145deg, #2c5364, #203a43);
    color: #ffd700;
    border: 3px solid #ffd700;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 
        0 8px 25px rgba(0,0,0,0.4),
        inset 0 2px 3px rgba(255,255,255,0.1);
}

.slide-nav:hover {
    background: linear-gradient(145deg, #ffd700, #ff8c00);
    color: #2c5364;
    transform: scale(1.15);
    box-shadow: 0 10px 35px rgba(255,215,0,0.5);
}

.slide-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 60px;
}

.control-btn {
    background: linear-gradient(135deg, #2c5364, #203a43);
    color: #fff;
    border: 2px solid #ffd700;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
}

.control-btn:hover {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #2c5364;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,215,0,0.4);
}

.awards h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5364;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.awards-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #8b6914;
    margin-bottom: 30px;
    font-style: italic;
}

.awards-caption {
    text-align: center;
    margin-top: 50px;
    font-size: 1.3rem;
    color: #5c3a21;
    background: linear-gradient(90deg, #fff8dc, #ffeaa7, #fff8dc);
    padding: 18px 35px;
    border-radius: 35px;
    display: inline-block;
    margin-left: 50%;
    transform: translateX(-50%);
    box-shadow: 
        0 5px 20px rgba(255, 215, 0, 0.35),
        inset 0 1px 2px rgba(255,255,255,0.8);
    border: 2px solid #daa520;
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .slide-image {
        width: 290px;
        height: 240px;
        object-fit: contain;
    }
    .slide-nav {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
        border-width: 2px;
    }
    .slide-frame {
        padding: 14px;
    }
    .slide-frame::before {
        top: 5px;
        left: 5px;
        right: 5px;
        bottom: 5px;
    }
    .slide-frame::after {
        font-size: 1.5rem;
        top: -12px;
    }
    .slide-counter {
        bottom: -45px;
        padding: 10px 22px;
        font-size: 0.9rem;
    }
    .slide-wrapper {
        gap: 15px;
    }
    .awards h2 {
        font-size: 1.6rem;
    }
}

/* CMA Data Modal Table */
#cmaModal table {
    margin-top: 12px;
    background: #fff;
    border-radius: 8px;
    font-size: 1.08rem;
}
#cmaModal th, #cmaModal td {
    padding: 8px 12px;
}
#cmaModal th {
    color: #2c5364;
}
/* Tax regime comparison side by side */
.tax-compare-row {
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 10px;
    flex-wrap: wrap;
}
.tax-compare-col {
    min-width: 180px;
    max-width: 220px;
    background: #f4f6fb;
    border-radius: 10px;
    padding: 16px 14px 10px 14px;
    box-shadow: 0 2px 8px #0001;
    text-align: center;
}
.tax-compare-col h4 {
    color: #2c5364;
    margin-bottom: 8px;
    text-align: center;
}
/* Input field hint for tax calculator */
.input-hint {
    font-size: 0.95em;
    color: #595959;
    margin-bottom: 8px;
    margin-top: -6px;
    margin-left: 2px;
}
/* Tax Calculator Modal Styles */
.tax-btn {
    background: #007a3d;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 8px 18px;
    font-size: 1rem;
    margin-top: 12px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.tax-btn:hover {
    background: #f7971e;
    color: #fff;
}
/* Daily SIP Mantra Button */
.sip-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(90deg, #1a5276, #f7971e);
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 10px 18px;
    font-size: 1rem;
    margin-top: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    font-weight: bold;
}
.sip-btn:hover {
    background: linear-gradient(90deg, #f7971e, #1a5276);
    color: #fff;
}
/* EMI Compare Side by Side */
.emi-compare-row {
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 10px;
    flex-wrap: wrap;
}
.emi-compare-col {
    min-width: 180px;
    max-width: 220px;
    background: #f4f6fb;
    border-radius: 10px;
    padding: 16px 14px 10px 14px;
    box-shadow: 0 2px 8px #0001;
}
.emi-compare-col h4 {
    color: #2c5364;
    margin-bottom: 8px;
    text-align: center;
}
.emi-compare-result-row {
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 10px;
    flex-wrap: wrap;
}
.emi-compare-result {
    min-width: 180px;
    max-width: 220px;
    background: #e9f1fa;
    border-radius: 10px;
    padding: 14px 12px 10px 12px;
    box-shadow: 0 2px 8px #0001;
    text-align: center;
    font-size: 1.08rem;
}
.emi-compare-result span {
    color: #2c5364;
    font-weight: bold;
}
.emi-compare-result.emi-b {
    background: #f7971e22;
}
.emi-compare-result.emi-b span {
    color: #f7971e;
}
.emi-compare-saved {
    text-align: center;
    font-size: 1.08rem;
    color: #007a3d;
    font-weight: 500;
    margin-top: 8px;
}
/* EMI Calculator Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}
.modal-content {
    background: #fff;
    margin: 7% auto;
    padding: 30px 24px 24px 24px;
    border: 1px solid #888;
    width: 95%;
    max-width: 700px;
    border-radius: 16px;
    box-shadow: 0 4px 24px #0003;
    position: relative;
    text-align: left;
}
@media (max-width: 700px) {
    .modal-content {
        max-width: 98vw;
        padding: 18px 2vw 18px 2vw;
    }
    .emi-compare-row, .emi-compare-result-row, .tax-compare-row {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
}
.modal-content h2 {
    color: #2c5364;
    margin-bottom: 18px;
    text-align: center;
}
.modal-content label {
    display: block;
    margin-top: 10px;
    margin-bottom: 4px;
    color: #003366;
    font-weight: 500;
}
.modal-content input {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #bcd0e5;
    border-radius: 6px;
    font-size: 1rem;
    background: #f4f6fb;
}
.modal-content button {
    background: #f7971e;
    color: #fff;
    padding: 10px 0;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
    transition: background 0.2s, color 0.2s;
}
.modal-content button:hover {
    background: #2c5364;
    color: #ffd200;
}
.close {
    color: #aaa;
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}
.close:hover {
    color: #f7971e;
}
.emi-btn {
    background: #2c5364;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 8px 18px;
    font-size: 1rem;
    margin-top: 12px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.emi-btn:hover {
    background: #f7971e;
    color: #fff;
}
/* Vibrant hero section with share trading theme */
.hero {
    background: linear-gradient(120deg, #0f2027, #2c5364 60%, #f7971e 100%);
    color: #fff;
    padding: 60px 0 40px 0;
    text-align: center;
    position: relative;
}
.hero-content h1 {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 18px;
    letter-spacing: 1px;
    text-shadow: 1px 2px 8px #0006;
}
.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 28px;
    text-shadow: 1px 1px 6px #0004;
}
.cta-btn {
    background: #f7971e;
    color: #fff;
    padding: 14px 36px;
    border-radius: 30px;
    font-size: 1.15rem;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 2px 8px #0002;
    transition: background 0.2s, color 0.2s;
    border: none;
    display: inline-block;
}
.cta-btn:hover {
    background: #2c5364;
    color: #f7971e;
}
.cta-btn.secondary {
    background: #fff;
    color: #2c5364;
    border: 2px solid #2c5364;
    margin-top: 10px;
}
.cta-btn.secondary:hover {
    background: #f7971e;
    color: #fff;
    border-color: #f7971e;
}

/* Colorful service cards */
.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    margin-top: 30px;
}
.service-cards .card {
    background: linear-gradient(135deg, #f7971e 0%, #ffd200 100%);
    color: #222;
    border-radius: 18px;
    box-shadow: 0 4px 16px #0001;
    padding: 32px 26px;
    min-width: 260px;
    max-width: 320px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 2px solid #fff3;
}
.service-cards .card:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 8px 32px #0002;
    background: linear-gradient(135deg, #2c5364 0%, #f7971e 100%);
    color: #fff;
}
.service-cards .card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: #2c5364;
    font-weight: bold;
}
.service-cards .card:hover h3 {
    color: #ffd200;
}
.service-cards .card p {
    font-size: 1.08rem;
    margin-bottom: 0;
}

/* Awards section with more color */
.awards {
    background: linear-gradient(90deg, #e9f1fa 60%, #f7971e22 100%);
    border-radius: 16px;
    padding: 40px 20px;
    margin: 40px auto 30px auto;
    max-width: 900px;
    box-shadow: 0 2px 8px #0001;
    text-align: center;
}
.awards-gallery img {
    border-radius: 12px;
    box-shadow: 0 2px 8px #0002;
    margin: 0 10px 18px 10px;
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 2px solid #f7971e44;
    background: #fff;
    transition: transform 0.2s, box-shadow 0.2s;
}
.team-section {
    background: #fff;
    padding: 50px 30px 50px 30px;
    border-radius: 16px;
    max-width: 1100px;
    margin: 30px auto 30px auto;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    text-align: center;
}
.team-section h2 {
    color: #003366;
    margin-bottom: 30px;
    font-size: 2rem;
}
.team-members {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    align-items: stretch;
}
.team-member {
    background: #e9f1fa;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 30px 25px;
    flex: 1;
    max-width: 480px;
    min-width: 300px;
    text-align: center;
    display: flex;
    flex-direction: column;
}
.team-member h3 {
    color: #0077b6;
    margin-bottom: 8px;
    font-size: 1.4rem;
}
.team-member > p {
    margin-bottom: 12px;
    font-size: 1.05rem;
    text-align: justify;
    line-height: 1.7;
}
.team-member > p:first-of-type {
    text-align: center;
}
.team-member-photo {
    text-align: center;
    margin-bottom: 20px;
}
.team-member-photo img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #0077b6;
    box-shadow: 0 4px 15px rgba(0, 119, 182, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-member-photo img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 119, 182, 0.4);
}
@media (max-width: 900px) {
    .team-members {
        flex-direction: column;
        gap: 18px;
        align-items: center;
    }
    .team-member {
        max-width: 100%;
    }
}

/* About Page Hero */
.about-firm-hero {
    background: linear-gradient(135deg, #2c5364, #203a43, #0f2027);
    color: #fff;
    text-align: center;
    padding: 60px 20px 50px 20px;
}
.about-firm-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #ffd700;
}
.about-firm-hero .tagline {
    font-size: 1.3rem;
    opacity: 0.9;
    font-style: italic;
}

/* About Firm Content */
.about-firm {
    background: #fff;
    padding: 40px 20px 40px 20px;
    text-align: left;
    max-width: 900px;
    margin: 30px auto 30px auto;
}
.about-firm .firm-content {
    font-size: 1.1rem;
    line-height: 1.8;
}
.about-firm .services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px 30px;
    margin: 20px 0;
    padding-left: 20px;
}
.about-firm .services-list li {
    color: #0077b6;
    font-weight: 500;
}
.about-firm h2 {
    color: #003366;
    margin-bottom: 18px;
}
.about-firm p {
    font-size: 1.08rem;
    margin-bottom: 15px;
}

/* Contact Info Section */
.contact-info-section {
    background: #e9f1fa;
    padding: 40px 20px;
    text-align: center;
}
.contact-info-section h2 {
    color: #003366;
    margin-bottom: 30px;
}
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}
.contact-item {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.contact-item strong {
    color: #0077b6;
    display: block;
    margin-bottom: 10px;
    font-size: 1.1rem;
}
.contact-item p {
    margin: 0;
    color: #333;
}
.contact-item a {
    color: #0077b6;
    text-decoration: none;
}
.contact-item a:hover {
    text-decoration: underline;
}

/* Qualifications Section */
.qualifications {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
}
.qualifications h4 {
    color: #003366;
    margin-bottom: 12px;
    font-size: 1.05rem;
}
.qualifications ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.qualifications li {
    margin-bottom: 10px;
    font-size: 0.98rem;
}
.qualifications .detail {
    display: block;
    color: #595959;
    font-size: 0.9rem;
    margin-top: 3px;
}

.contact-section {
    background: #fff;
    padding: 50px 20px 30px 20px;
    max-width: 1100px;
    margin: 0 auto 30px auto;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.contact-section h1 {
    color: #003366;
    margin-bottom: 32px;
    text-align: center;
}
.contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
}
.contact-info {
    min-width: 260px;
    max-width: 340px;
    background: #e9f1fa;
    border-radius: 12px;
    padding: 24px 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.contact-info h2, .contact-info h3 {
    color: #003366;
    margin-bottom: 6px;
    margin-top: 18px;
}
.contact-info p, .contact-info a {
    color: #222;
    margin-bottom: 10px;
    font-size: 1.05rem;
    text-decoration: none;
}
.contact-form {
    display: flex;
    flex-direction: column;
    min-width: 260px;
    max-width: 400px;
    background: #f4f6fb;
    border-radius: 12px;
    padding: 24px 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.contact-form label {
    margin-bottom: 6px;
    color: #003366;
    font-weight: 500;
}
.contact-form input, .contact-form textarea {
    margin-bottom: 16px;
    padding: 10px;
    border: 1px solid #bcd0e5;
    border-radius: 6px;
    font-size: 1rem;
    background: #fff;
    resize: vertical;
}
.contact-form button {
    background: #ffb703;
    color: #003366;
    padding: 12px 0;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.contact-form button:hover {
    background: #003366;
    color: #fff;
}
@media (max-width: 900px) {
    .contact-details {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
}
.about-profile {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 50px 20px 30px 20px;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto 30px auto;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.profile-img img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #e9f1fa;
    background: #f4f6fb;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.profile-info {
    max-width: 600px;
}
.profile-info h1 {
    color: #003366;
    margin-bottom: 12px;
}
.profile-info ul {
    list-style: disc inside;
    margin: 16px 0 0 0;
    padding: 0;
}
.profile-info ul li {
    margin-bottom: 6px;
    font-size: 1.05rem;
}
.about-awards {
    background: #e9f1fa;
    padding: 40px 20px 50px 20px;
    text-align: center;
    border-radius: 16px;
    max-width: 900px;
    margin: 0 auto 30px auto;
}
.about-awards h2 {
    color: #003366;
    margin-bottom: 18px;
}
.about-awards p {
    font-size: 1.08rem;
    margin-bottom: 18px;
}
@media (max-width: 900px) {
    .about-profile {
        flex-direction: column;
        gap: 24px;
        padding: 30px 10px 20px 10px;
    }
    .about-awards {
        padding: 24px 10px 30px 10px;
    }
}
.awards-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    margin-bottom: 18px;
}
.awards-gallery img:hover {
    transform: scale(1.07);
    box-shadow: 0 6px 24px rgba(0,119,182,0.13);
    border-color: #ffb703;
}
body {
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f6fb;
    color: #222;
}

html {
    scroll-behavior: smooth;
}

/* ===== PREMIUM TYPOGRAPHY ===== */
h1, h2, h3, .logo {
    font-family: 'Playfair Display', 'Georgia', serif;
}

/* ===== SCROLL FADE-IN ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 200;
    background: none;
    border: none;
}
.hamburger span {
    width: 28px;
    height: 3px;
    background: #003366;
    border-radius: 3px;
    transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        border-top: 3px solid #f7971e;
        z-index: 150;
    }
    nav.open {
        display: flex;
    }
    nav a {
        padding: 12px 0;
        margin: 0;
        font-size: 1.1rem;
        border-bottom: 1px solid #eee;
    }
    nav a:last-child {
        border-bottom: none;
    }
}

/* ===== ACTIVE NAV LINK ===== */
nav a.active {
    color: #f7971e;
    font-weight: 700;
    border-bottom: 3px solid #f7971e;
    padding-bottom: 4px;
}

header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    position: sticky;
    top: 0;
    z-index: 100;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 18px 24px;
}
.logo {
    font-size: 1.7rem;
    font-weight: bold;
    color: #003366;
    letter-spacing: 1px;
}
nav a {
    color: #003366;
    margin: 0 18px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
nav a:hover {
    color: #0077b6;
    text-decoration: underline;
}

.services-highlight {
    background: #fff;
    padding: 50px 20px 30px 20px;
    text-align: center;
}
.services-highlight h2 {
    color: #003366;
    margin-bottom: 32px;
}
.card {
    background: #f4f6fb;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 28px 22px;
    width: 270px;
    min-height: 180px;
    text-align: left;
    transition: box-shadow 0.2s;
}
.card:hover {
    box-shadow: 0 6px 24px rgba(0,119,182,0.13);
}
.card h3 {
    color: #0077b6;
    margin-bottom: 10px;
}

.card-cta {
    display: inline-block;
    margin-top: 14px;
    padding: 8px 20px;
    background: #003366;
    color: #fff;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.2s, transform 0.2s;
}
.card-cta:hover {
    background: #f7971e;
    color: #fff;
    transform: translateY(-2px);
}

.about-cta {
    background: #e9f1fa;
    padding: 40px 20px 50px 20px;
    text-align: center;
}
.about-cta h2 {
    color: #003366;
    margin-bottom: 18px;
}
.about-cta ul {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
}
.about-cta ul li {
    margin-bottom: 8px;
    font-size: 1.08rem;
}

footer {
    background: #003366;
    color: #fff;
    padding: 24px 0 10px 0;
    text-align: center;
    position: relative;
    width: 100%;
    bottom: 0;
}
.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    font-size: 1rem;
}
.footer-content a {
    color: #ffb703;
    text-decoration: none;
    margin: 0 6px;
}
.footer-content a:hover {
    text-decoration: underline;
}
.useful-links {
    width: 100%;
    text-align: center;
    padding: 10px 0 6px 0;
    font-size: 0.95rem;
    border-top: 1px solid rgba(255,255,255,0.15);
    margin-top: 6px;
}
.useful-links strong {
    color: #ffd700;
    font-size: 1rem;
}

@media (max-width: 900px) {
    .service-cards {
        flex-direction: column;
        align-items: center;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .navbar {
        flex-direction: column;
        gap: 10px;
    }
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: whatsappPulse 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}
.whatsapp-float svg {
    width: 34px;
    height: 34px;
    fill: #fff;
}
@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(37, 211, 102, 0.7); }
}

/* ===== NEWS / UPDATES PAGE ===== */
.news-section {
    max-width: 900px;
    margin: 30px auto;
    padding: 0 20px;
}
.news-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.news-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 28px 26px;
    border-left: 5px solid #f7971e;
    transition: transform 0.2s, box-shadow 0.2s;
}
.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 24px rgba(0,119,182,0.12);
}
.news-card h2 {
    color: #003366;
    font-size: 1.4rem;
    margin-bottom: 6px;
}
.news-date {
    color: #595959;
    font-size: 0.95rem;
    margin-bottom: 10px;
}
.news-badge {
    display: inline-block;
    background: linear-gradient(90deg, #f7971e, #ffd200);
    color: #003366;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}
.news-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333;
}
@media (max-width: 600px) {
    .news-card {
        padding: 20px 16px;
    }
    .news-card h2 {
        font-size: 1.15rem;
    }
}
/* ===== SKIP LINK FOCUS ===== */
.skip-link:focus {
    position: fixed;
    left: 10px;
    top: 10px;
    width: auto;
    height: auto;
    overflow: visible;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: bold;
    z-index: 99999;
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    display: none;
    position: fixed;
    bottom: 100px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #003366, #2c5364);
    color: #ffd700;
    border: 2px solid #ffd700;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 9998;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s, background 0.3s;
}
.back-to-top:hover {
    transform: scale(1.15);
    background: linear-gradient(135deg, #ffd700, #f7971e);
    color: #003366;
}

/* ===== TRADINGVIEW WIDGET ===== */
.tradingview-widget-container {
    border-radius: 10px;
    overflow: hidden;
    margin-top: 10px;
}
.tradingview-widget-container__widget {
    width: 100%;
}

/* Index Cards (NIFTY / BANK NIFTY) */
.index-cards {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.index-card {
    flex: 1;
    min-width: 260px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8eef8 100%);
    border: 1px solid #d0d8e8;
    border-radius: 12px;
    padding: 14px 18px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}
.index-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,51,102,0.15);
    border-color: #003366;
}
.index-icon {
    font-size: 1.8rem;
}
.index-info {
    flex: 1;
}
.index-name {
    font-weight: 700;
    font-size: 0.85rem;
    color: #003366;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.index-price {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-top: 2px;
}
.index-change {
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
}
.index-change.up {
    color: #2A8215;
}
.index-change.down {
    color: #DC0001;
}
@media (max-width: 600px) {
    .index-cards {
        flex-direction: column;
    }
    .index-card {
        min-width: unset;
    }
}