/*
@Author: ThemeMascot
@URL: http://ThemeMascot.com

This is the file where you can add your custom styles to change the look of the
theme. But don't modify style-main.css file.

*/

/* Your custom css codes start here: */

 /* Default hide toggle on desktop */

        .header-brand {
            display: none !important;
        }

        .header .header-nav {
            top: 170px;
        }

        #home {
            padding-top: 150px;
        }


    .video-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 500px;   /* default height for desktop */
    overflow: hidden;
    margin-left: 10%;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    width: 100%;
    height: 90%;
    border: 0;
}

/* ðŸ“± Mobile (up to 576px) */
@media (max-width: 576px) {
    .video-wrapper {
        height: 300px; /* smaller screens */
         margin-left: 0%
    }
}

/* ðŸ“± Tablets (576px - 992px) */
@media (min-width: 577px) and (max-width: 992px) {
    .video-wrapper {
        height: 380px;
         margin-left: 0%
    }
}

/* ðŸ’» Large screens (default is 450px, can increase) */
@media (min-width: 1200px) {
    .video-wrapper {
        height: 500px;

    }
}

.menuzord-brand img{
    max-height:70px !important;
}

    


        /* investor Relation card css */
        .investor-relations-banner {
            background-size: cover;
            background-position: center;
            height: 400px;
            /* kam height */
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            color: #fff;
            margin-top: 184px;
            /* upar wale section se gap */
        }

        .investor-heading {
            font-size: 48px;
            font-weight: bold;
            color: #fff;
            margin-bottom: 20px;
        }

        .stock-box {
            background: #fff;
            color: #000;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            padding: 20px;
            text-align: left;
            max-width: 195px;
            margin: 0 auto;
            margin-right:139px;
        }

        .stock-title {
            font-size: 14px;
            font-weight: bold;
            background: #333;
            color: #fff;
            padding: 5px 10px;
            border-radius: 4px 4px 0 0;
            margin-bottom: 10px;
            display: inline-block;
        }

        .stock-price {
            font-size: 32px;
            font-weight: bold;
            color: #ff6600;
        }

        .stock-change {
            font-size: 14px;
            color: red;
            margin-bottom: 10px;
            display: block;
        }

        .stock-date {
            font-size: 12px;
            color: #555;
            display: block;
        }

        #line {
            font-size: 18px;
            color: #333333;
              margin-left: 35px;
              margin-right: 25px;
        }

        /* ✅ Mobile Responsive */
        @media (max-width: 767px) {
            .investor-heading {
                font-size: 32px;
            }

            .stock-box {
                max-width: 70%;
                margin-top: 20px;
            }

            #line {
                font-size: 16px;
            }
        }


/* Filters styling */


.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 15px;
  gap: 10px;
}
.filter-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.filters select {
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-radius: 50px; /* rounded */
  outline: none;
}

/* Table Styling */
.table-wrapper {
  width: 100%;
  overflow-x: auto; /* responsive scroll on small screens */
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px; /* ensures proper structure */
}
thead {
  background: #222;
  color: #fff;
}
th, td {
  padding: 10px;
  border: 1px solid #ddd;
  text-align: left;
}
th {
  text-align: center;
}

/* Filing type highlights */
.highlight.red { color: #b30000; font-weight: bold; }
.highlight.orange { color: #e67e22; font-weight: bold; }

/* Icons alignment */
.icons {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.icons a {
  text-decoration: none;
}
.icons i {
  font-size: 20px;
  vertical-align: middle;
}
.pdf { color: #b30000; }
.excel {  color: #b30000; }

/* Responsive adjustments */
@media (max-width: 768px) {
  table {
    font-size: 14px;
  }
  .icons i {
    font-size: 18px;
  }
  .filters {
    flex-direction: column;
    align-items: flex-start;
  }
} 

/* What card icon css */
                .whatsapp-card {
                    position: fixed;
                    top: 58%;
                    right: 30px;
                    transform: translateY(-50%);
                    z-index: 9999;
                    background: #143c1a;
                    border: 3px solid #ffd600;
                    border-radius: 12px;
                    box-shadow: 0 4px 24px rgba(0,0,0,0.25);
                    padding: 9px 11px 9px 11px;
                    min-width: 110px;
                    max-width: 131px;
                    display: flex;
                    align-items: center;
                }
                .whatsapp-card-inner {
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                }
                .whatsapp-logo {
                    width: 64px;
                    height: 64px;
                    margin-bottom: 10px;
                    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
                    border-radius: 12px;
                }
                .whatsapp-texts {
                    text-align: center;
                    color: #fff;
                }
                .whatsapp-title {
                    font-size: 0.55em;
                    font-weight: 400;
                    margin-bottom: 1px;
                }
                .whatsapp-group {
                    font-size: 0.725em;
                    font-weight: 700;
                    margin-bottom: 1px;
                }
                .whatsapp-link {
                    font-size: 0.475em;
                    color: #b2ffb2;
                    margin-top: 2px;
                }
                 @media (max-width: 600px) {
                    .whatsapp-card {
                        right: 20px;
                        min-width: 80px;
                        max-width: 90px;
                        padding: 5px 4px;
                        margin-top: -74px;
                    }
                    .whatsapp-group {
                        font-size: 0.5em;
                    }
                }



/* Filters */
.filters {
  margin: -20px 0 20px 0;
}
.filter-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.filters select {
  padding: 6px 14px;
  border: 1px solid #ccc;
  border-radius: 50px; /* rounded dropdown */
  outline: none;
  font-size: 14px;
}

/* Press Release List */
.press-list {
  margin-top: 10px;
}
.press-item {
  padding: 15px 0;
  border-bottom: 1px solid #e0e0e0;
}
.press-item:last-child {
  border-bottom: none;
}
.press-item .date {
  font-size: 14px;
  color: #666;
  margin: 0 0 5px 0;
}
.press-item .desc {
  font-size: 16px;
  color: #222;
  margin: 0;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
  .filters select {
    font-size: 13px;
  }
  .press-item .date {
    font-size: 13px;
  }
  .press-item .desc {
    font-size: 15px;
  }
}


  /* Stock Footer (already given, kept same with small tweaks) */
.stock-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #6c757d; /* text-muted color */
    flex-wrap: wrap; /* Responsive line break on small devices */
    margin-top: 8px;
    width: 100%;
}

.stock-footer .left-text {
    text-align: left;
}

.stock-footer .right-text {
    text-align: right;
}

@media (max-width: 576px) {
    .stock-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    .stock-footer .right-text {
        text-align: left;
        width: 100%;
    }
}

/* ✅ Table aur Chart ke beech normal gap */
.stock-chart-wrapper {
    margin-top: 30px;   /* desktop gap */
}

/* ✅ Chart aur Blog ke beech normal gap */
#stock-chart {
    margin-bottom: 40px;  /* uniform gap before blog */
}


/* ✅ Responsive adjustments */
@media (max-width: 768px) {
    .stock-chart-wrapper {
        margin-top: 20px;
    }
    #stock-chart {
        margin-bottom: 30px;
    }
}


/* Contact Info Section */
.contact-info {
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 15px;  /* Left margin */
    padding-right: 15px; /* Right margin */
}

/* For larger screens */
@media (min-width: 992px) {
    .contact-info {
        padding-left: 50px;  /* Left margin for larger screens */
        padding-right: 50px; /* Right margin for larger screens */
    }
}

.contact-info p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 15px;
}

.contact-info p a {
    color: #007bff;
    text-decoration: none;
}

.contact-info p a:hover {
    text-decoration: underline;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .contact-info {
        padding-left: 15px; /* Adjust padding for mobile */
        padding-right: 15px; 
    }

    .contact-info p {
        font-size: 1rem;
    }
}



/* Contact Form Section */
.contact-form-section {
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 15px;  /* Left margin */
    padding-right: 15px; /* Right margin */
}

/* For larger screens */
@media (min-width: 992px) {
    .contact-form-section {
        padding-left: 50px;  /* Left margin */
        padding-right: 50px; /* Right margin */
    }
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    font-weight: 600;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    border-radius: 4px;
    border: 1px solid #ddd;
    padding: 15px;
    font-size: 1rem;
    width: 100%;
}

.contact-form .btn-primary {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 1.1rem;
    border: none;
}

.contact-form .btn-primary:hover {
    background-color: #0056b3;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .contact-form-section {
        padding-left: 15px; /* Adjust padding for mobile */
        padding-right: 15px; 
    }

    .contact-form .form-group {
        margin-bottom: 15px;
    }
    
    .contact-form .btn-primary {
        width: 100%;
        padding: 12px 20px;
    }
}


/* Section background */
.investor-section {
  background-color: #fff8e1; /* light yellow */
  padding: 50px 0;
}

/* Layout */
.investor-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}

.investor-left {
  flex: 1 1 60%;
  min-width: 300px;
}

.investor-right {
  flex: 1 1 35%;
  min-width: 250px;
}

/* Titles */
.section-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333; /* dark text on yellow background */
}

/* Right links */
.results-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.results-links li {
  margin-bottom: 14px;
  font-size: 16px;
  display: flex;
  align-items: center;
}

.results-links li .icon {
  color: #f4c542; /* yellow icons */
  font-size: 20px;
  margin-right: 10px;
}

/* Optional button (if needed later) */
.btn-donate {
  display: inline-block;
  background: #f4c542;
  padding: 6px 12px;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
}

/* Responsive */
@media (max-width: 768px) {
  .investor-wrapper {
    flex-direction: column;
  }
  .investor-left, .investor-right {
    flex: 1 1 100%;
  }
}

@media (max-width: 600px) {
    .item img{
        max-width: 15%;
    }

}

@media (max-width: 768px) {
    .item img{
        max-width: 15%;
    }

}

@media (max-width: 900px) {
    .item img{
        max-width: 15%;
    }

}





