/* ===== BEAUTIFUL AWARDS SLIDESHOW ===== */
.slideshow-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 20px;
    position: relative;
}

.slide-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.slide-frame {
    position: relative;
    background: linear-gradient(135deg, #b8860b 0%, #ffd700 25%, #daa520 50%, #ffd700 75%, #b8860b 100%);
    padding: 18px;
    border-radius: 20px;
    box-shadow: 
        0 0 0 4px #8b6914,
        0 0 0 8px #daa520,
        0 15px 50px rgba(184, 134, 11, 0.5),
        0 8px 25px rgba(0,0,0,0.4),
        inset 0 3px 6px rgba(255,255,255,0.6),
        inset 0 -2px 4px rgba(0,0,0,0.2);
    animation: glow 3s ease-in-out infinite alternate;
}

.slide-frame::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border: 2px solid rgba(255, 215, 0, 0.6);
    border-radius: 16px;
    pointer-events: none;
}

.slide-frame::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 3px solid transparent;
    border-image: linear-gradient(135deg, #ffd700, #8b6914, #ffd700, #8b6914) 1;
    border-radius: 24px;
    pointer-events: none;
    opacity: 0.7;
}

@keyframes glow {
    0% { 
        box-shadow: 
            0 0 0 4px #8b6914,
            0 0 0 8px #daa520,
            0 15px 50px rgba(184, 134, 11, 0.5),
            0 8px 25px rgba(0,0,0,0.4),
            inset 0 3px 6px rgba(255,255,255,0.6);
    }
    100% { 
        box-shadow: 
            0 0 0 4px #b8860b,
            0 0 0 8px #ffd700,
            0 20px 70px rgba(255, 215, 0, 0.6),
            0 12px 35px rgba(0,0,0,0.5),
            inset 0 3px 6px rgba(255,255,255,0.8);
    }
}

.slide-image {
    width: 500px;
    height: 400px;
    object-fit: contain;
    display: block;
    border-radius: 12px;
    transition: opacity 0.4s ease-in-out, transform 0.3s ease;
    background: linear-gradient(135deg, #ffffff, #f8f8f8);
    border: 3px solid #fff;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.05);
}

.slide-counter {
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #2c5364, #203a43, #2c5364);
    color: #ffd700;
    padding: 10px 28px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1rem;
    letter-spacing: 2px;
    border: 2px solid #ffd700;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.slide-nav {
    background: linear-gradient(145deg, #2c5364, #203a43);
    color: #ffd700;
    border: 3px solid #ffd700;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 1.6rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}

.slide-nav:hover {
    background: linear-gradient(145deg, #ffd700, #ff8c00);
    color: #2c5364;
    transform: scale(1.1);
}

.slide-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
}

.control-btn {
    background: linear-gradient(90deg, #2c5364, #203a43);
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.control-btn:hover {
    background: linear-gradient(90deg, #f7971e, #ffd200);
    color: #2c5364;
    transform: translateY(-2px);
}

.awards h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #2c5364;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.awards-caption {
    text-align: center;
    margin-top: 40px;
    font-size: 1.3rem;
    color: #2c5364;
    background: linear-gradient(90deg, #fff8dc, #ffeaa7, #fff8dc);
    padding: 15px 30px;
    border-radius: 30px;
    display: inline-block;
    margin-left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .slide-image {
        width: 280px;
        height: 220px;
        object-fit: contain;
    }
    .slide-nav {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        border-width: 2px;
    }
    .slide-frame {
        padding: 12px;
    }
    .slide-frame::before {
        top: 4px;
        left: 4px;
        right: 4px;
        bottom: 4px;
    }
    .slide-counter {
        bottom: -40px;
        padding: 8px 20px;
        font-size: 0.9rem;
    }
    .slide-wrapper {
        gap: 12px;
    }
    .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: #888;
    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 {
        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;
}

/* Stock ticker bar */
.stock-ticker {
    background: #222;
    color: #fff;
    font-size: 1.05rem;
    padding: 8px 0;
    overflow-x: auto;
    white-space: nowrap;
    border-bottom: 3px solid #f7971e;
    letter-spacing: 1px;
    font-family: 'Segoe UI', Arial, sans-serif;
}
.stock-ticker span {
    margin: 0 24px;
    color: #f7971e;
    font-weight: bold;
}

/* 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 h2 {
    color: #2c5364;
    margin-bottom: 24px;
}
.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;
}
.awards-caption {
    color: #2c5364;
    font-size: 1.1rem;
    margin-top: 18px;
    font-weight: 500;
}
.team-section {
    background: #fff;
    padding: 40px 20px 40px 20px;
    border-radius: 16px;
    max-width: 900px;
    margin: 0 auto 30px auto;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    text-align: center;
}
.team-section h2 {
    color: #003366;
    margin-bottom: 24px;
}
.team-members {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}
.team-member {
    background: #e9f1fa;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 24px 18px;
    max-width: 350px;
    min-width: 260px;
    text-align: left;
}
.team-member h3 {
    color: #0077b6;
    margin-bottom: 8px;
}
.team-member p {
    margin-bottom: 10px;
    font-size: 1.05rem;
}
@media (max-width: 900px) {
    .team-members {
        flex-direction: column;
        gap: 18px;
        align-items: center;
    }
}
.about-firm {
    background: #e9f1fa;
    padding: 40px 20px 40px 20px;
    text-align: center;
    border-radius: 16px;
    max-width: 900px;
    margin: 0 auto 30px auto;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.about-firm h2 {
    color: #003366;
    margin-bottom: 18px;
}
.about-firm p {
    font-size: 1.08rem;
    margin-bottom: 0;
}
.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 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 {
    background: #fff;
    padding: 50px 20px 30px 20px;
    text-align: center;
}
.awards h2 {
    color: #003366;
    margin-bottom: 32px;
}
.awards-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    margin-bottom: 18px;
}
.awards-gallery img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 3px solid #e9f1fa;
    background: #f4f6fb;
    transition: transform 0.2s, box-shadow 0.2s;
}
.awards-gallery img:hover {
    transform: scale(1.07);
    box-shadow: 0 6px 24px rgba(0,119,182,0.13);
    border-color: #ffb703;
}
.awards-caption {
    color: #0077b6;
    font-size: 1.08rem;
    margin-bottom: 0;
}
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f6fb;
    color: #222;
}

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;
}

.hero {
    background: linear-gradient(120deg, #003366 60%, #0077b6 100%);
    color: #fff;
    padding: 70px 20px 60px 20px;
    text-align: center;
}
.hero-content h1 {
    font-size: 2.7rem;
    margin-bottom: 18px;
}
.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 28px;
}
.cta-btn {
    background: #ffb703;
    color: #003366;
    padding: 14px 32px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
}
.cta-btn:hover {
    background: #003366;
    color: #fff;
}
.cta-btn.secondary {
    background: #fff;
    color: #003366;
    border: 2px solid #003366;
    margin-top: 18px;
}
.cta-btn.secondary:hover {
    background: #003366;
    color: #fff;
}

.services-highlight {
    background: #fff;
    padding: 50px 20px 30px 20px;
    text-align: center;
}
.services-highlight h2 {
    color: #003366;
    margin-bottom: 32px;
}
.service-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
}
.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;
}

.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;
}

@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;
    }
}