:root {
  --primary-orange: #ff6e00;
  --primary-blue: #1d5298;
  --white: #ffffff;
  --light-bg: #f8f9fa;
}

.app-heading {
  color: var(--primary-orange) !important;
}
.app-heading-2 {
  color: var(--primary-blue) !important;
}

.app-heading-3 {
  color: var(--white) !important;
}

.app-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.app-feature-card {
  background: var(--white);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.app-feature-card:hover {
  transform: translateY(-10px);
}

.app-feature-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 110, 0, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.app-feature-icon i {
  font-size: 30px;
  color: var(--primary-orange);
}

.app-button {
  background: var(--primary-orange) !important;
  color: var(--white) !important;
}

.app-screenshots {
  background: var(--light-bg);
  padding: 100px 0;
}

.screenshot-slider {
  margin-top: 50px;
}

.screenshot-item {
  text-align: center;
}

.screenshot-item img {
  max-width: 250px;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.screenshot-item img:hover {
  transform: scale(1.05);
}

.download-section {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #3d5afe 100%);
  color: white;
  padding: 100px 0;
  text-align: center;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.download-btn {
  display: flex;
  align-items: center;
  background: white;
  color: #333;
  padding: 15px 25px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.download-btn:hover {
  transform: translateY(-5px);
  color: #333;
}

.download-btn i {
  font-size: 30px;
  margin-right: 15px;
  color: var(--primary-blue);
}

.app-stats {
  padding: 80px 0;
  background: var(--white);
}

.stat-card {
  text-align: center;
  padding: 30px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-orange);
  margin-bottom: 10px;
}

.app-testimonials {
  padding: 100px 0;
  background: var(--light-bg);
}

.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin: 15px;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

@media (max-width: 768px) {
  .download-buttons {
    flex-direction: column;
    align-items: center;
  }

  .app-mockup img {
    max-width: 250px;
  }
}
.amc-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.fund-list {
  margin-top: 15px;
}

.fund-item {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.fund-item:last-child {
  border-bottom: none;
}

.fund-item:hover {
  transform: translateX(5px);
  background: rgba(255, 110, 0, 0.03);
  padding-left: 10px;
  border-radius: 8px;
}

.fund-item i {
  color: var(--primary-orange, #ff6e00);
  margin-right: 12px;
  font-size: 1.35rem;
  width: 20px;
  text-align: center;
}

.fund-item span {
  font-size: 1.35rem;
  color: #4b5563;
  font-weight: 500;
}

.service-card-v2 {
  padding: 30px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card-v2:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.service-card-v2.active {
  border-left: 4px solid var(--primary-orange, #ff6e00);
}

.service-card-num span {
  color: var(--primary-orange, #ff6e00);
}

.investment-stats-overlay {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  background: rgba(255, 255, 255, 0.95);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
}

.stat-item {
  text-align: center;
}

.stat-item h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-orange, #ff6e00);
  margin-bottom: 5px;
}

.stat-item p {
  font-size: 1.35rem;
  color: #6b7280;
  margin: 0;
}

.service-card-user-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 600px;
}

.service-card-user-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .amc-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .investment-stats-overlay {
    flex-direction: column;
    gap: 15px;
  }

  .service-card-v2 {
    padding: 20px;
  }
}
.bgcolor-white {
  background-color: var(--white);
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .banner-main-demo-inner-content .absolute-designation .up {
    font-size: 60px;
  }
}
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #f8f9fa;
  border-radius: 50%;
  color: var(--primary-orange) !important;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--primary-orange) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
}

/* Mobile Responsive Fixes */
@media (max-width: 830px) {
  .absolute-designation h2.up.shape {
    font-size: 6rem !important;
  }

  .app-heading,
  .app-heading-2 {
    font-size: inherit !important;
  }
}

/* Mobile Responsive Fixes */
@media (max-width: 768px) {
  .absolute-designation h2.up.shape {
    font-size: 3rem !important;
  }

  .app-heading,
  .app-heading-2 {
    font-size: inherit !important;
  }
}

/* Extra Small Devices */
@media (max-width: 480px) {
  .absolute-designation h2.up.shape {
    font-size: 2.75rem !important;
    margin-top: 70px !important;
  }

  .app-heading {
    font-size: 2.75rem !important;
  }

  .app-heading-2 {
    font-size: 2.75rem !important;
  }
}

/* Additional fixes for very small screens */
@media (max-width: 360px) {
  .absolute-designation h2.up.shape {
    font-size: 2rem !important;
  }
}

.partner-item {
  background: #fff;
  border: 2px solid #f0f0f0;
  border-radius: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  padding: 25px 30px;
}

.partner-item:last-child {
  margin-bottom: 0;
}

.partner-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #ff6e00;
}

.partner-content {
  display: flex;
  align-items: center;
  gap: 30px;
  width: 100%;
}

.partner-logo-wrapper {
  flex-shrink: 0;
}

.company-logo {
  width: 200px;
  height: 120px;
  object-fit: contain;
  border-radius: 12px;
  padding: 15px;
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
}

.partner-item:hover .company-logo {
  border-color: #ff6e00;
  background: rgba(255, 110, 0, 0.05);
  transform: scale(1.05);
}

.partner-info {
  flex: 1;
}

.main-title {
  font-size: 3rem;
  font-weight: 700;
  color: #2d3748;
  margin: 0 0 12px 0;
  line-height: 1.4;
}

.sub-title {
  font-size: 2rem;
  color: #718096;
  margin: 0;
  line-height: 1.5;
  font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .partners-list-container {
    padding: 20px;
  }

  .partner-item {
    padding: 20px;
    margin-bottom: 15px;
  }

  .partner-content {
    gap: 20px;
  }

  .company-logo {
    width: 100px;
    height: 100px;
    padding: 12px;
  }

  .main-title {
    font-size: 1.5rem;
  }

  .sub-title {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .service-card-user-image img {
    height: 0px;
  }
}

@media (max-width: 576px) {
  .service-card-user-image img {
    height: 400px;
  }
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, #ff6e00 0%, #ff8f00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Founders Section */
.founders-section {
  margin-bottom: 4rem !important;
}

.founder-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  border: 2px solid transparent;
}

.founder-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: #ff6e00;
}

.founder-image {
  height: 250px;
  overflow: hidden;
}

.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.founder-card:hover .founder-image img {
  transform: scale(1.05);
}

.founder-info {
  padding: 30px;
  text-align: center;
}

.founder-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 8px;
}

.founder-title {
  font-size: 1.1rem;
  color: #ff6e00;
  font-weight: 600;
  margin-bottom: 15px;
}

.founder-bio p {
  color: #718096;
  line-height: 1.6;
  margin: 0;
}

/* Advisors Section */
.advisors-section {
  margin-top: 2rem;
}

.advisor-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #f0f0f0;
}

.advisor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  border-color: #ff6e00;
}

.advisor-image {
  height: 200px;
  overflow: hidden;
}

.advisor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.advisor-card:hover .advisor-image img {
  transform: scale(1.05);
}

.advisor-header {
  padding: 20px 20px 10px;
  text-align: center;
  border-bottom: 1px solid #f0f0f0;
}

.advisor-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 5px;
}

.advisor-title {
  font-size: 0.9rem;
  color: #ff6e00;
  font-weight: 600;
  margin-bottom: 10px;
}

.advisor-credentials {
  display: flex;
  justify-content: center;
  gap: 5px;
  flex-wrap: wrap;
}

.credential-badge {
  background: linear-gradient(135deg, #ff6e00 0%, #ff8f00 100%);
  color: white;
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
}

.advisor-body {
  padding: 15px 20px 20px;
}

.advisor-position {
  font-size: 0.85rem;
  font-weight: 600;
  color: #2d3748;
  margin-top: 8px;
}

.advisor-position:first-child {
  margin-top: 0;
}

.advisor-institution {
  font-size: 0.8rem;
  color: #718096;
  margin-bottom: 5px;
  line-height: 1.4;
}

.advisor-role {
  font-size: 0.8rem;
  color: #ff6e00;
  font-weight: 600;
  margin-top: 8px;
  font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .founder-image {
    height: 200px;
  }

  .founder-info {
    padding: 20px;
  }

  .founder-name {
    font-size: 1.3rem;
  }

  .advisor-image {
    height: 180px;
  }
}

@media (max-width: 576px) {
  .founders-section .col-md-6 {
    margin-bottom: 2rem;
  }

  .advisors-section .col-md-6 {
    margin-bottom: 1.5rem;
  }
}

/* Founders & Advisors Section Styles */
.founders-section,
.advisors-section {
  padding: 80px 0;
}

.tmp-profile-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
  text-align: center;
}

.tmp-profile-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-orange);
}

.tmp-card-body .image img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border: 4px solid #f8f9fa;
  transition: all 0.3s ease;
}

.tmp-profile-card:hover .tmp-card-body .image img {
  border-color: var(--primary-orange);
  transform: scale(1.05);
}

/* Founders specific styles */
.founders-section .tmp-card-body .image img {
  width: 180px;
  height: 180px;
}

.card-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 10px;
  line-height: 1.3;
}

.founder-position {
  font-size: 1.3rem;
  color: var(--primary-orange);
  font-weight: 600;
  margin-bottom: 20px;
}

.founder-description {
  color: #718096;
  line-height: 1.7;
  font-size: 1.1rem;
  margin-bottom: 25px;
}



.position-item {
  font-size: 1.1rem;
  color: #4a5568;
}

.position-item strong {
  color: #2d3748;
  font-weight: 700;
}

.credentials {
  font-size: 1.5rem;
  color: var(--primary-orange);
  font-weight: 600;
  display: block;
  margin-top: 5px;
}
.specific-card{
  margin-bottom: 0 !important;
  font-size: 1.2rem !important;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .card-title {
    font-size: 1.6rem;
  }

  .founder-position {
    font-size: 1.2rem;
  }

  .position-item {
    font-size: 1rem;
  }
}

@media (max-width: 992px) {
  .tmp-card-body .image img {
    width: 130px;
    height: 130px;
  }

  .founders-section .tmp-card-body .image img {
    width: 160px;
    height: 160px;
  }

  .card-title {
    font-size: 1.5rem;
  }

  .founder-description {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .founders-section,
  .advisors-section {
    padding: 60px 0;
  }

  .tmp-profile-card {
    margin-bottom: 30px;
  }

  .tmp-card-body .image img {
    width: 120px;
    height: 120px;
  }

  .founders-section .tmp-card-body .image img {
    width: 140px;
    height: 140px;
  }

  .card-title {
    font-size: 1.4rem;
  }

  .founder-position {
    font-size: 1.1rem;
  }

  .position-item {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .tmp-card-body .image img {
    width: 110px;
    height: 110px;
  }

  .founders-section .tmp-card-body .image img {
    width: 130px;
    height: 130px;
  }

  .card-title {
    font-size: 1.3rem;
  }

  .position-item {
    font-size: 2rem !important;
  }
   .specific-card {
        margin-bottom: 0;
        font-size: inherit;
    }
    .tmp-card-body h5{
      font-size: 2.5rem !important;
    }

}

/* Equal Height Solution for Advisors Cards */
.advisors-section .row {
    display: flex;
    flex-wrap: wrap;
}

.advisors-section .col-lg-3 {
    display: flex;
}

.advisors-section .tmp-profile-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 420px; /* Adjust this value as needed */
}

.advisors-section .tmp-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.advisors-section .text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.advisors-section .advisor-positions {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advisors-section .position-item {
    width: 100%;
    margin: 0;
    line-height: 1.6;
}

.tmp-btn {
    padding: 0 15px;
    background: var(--color-primary);
    height: 40px;
    line-height: 35px !important;
    color: var(--color-white);
    font-size: 13px;
    letter-spacing: 0.2px;
    font-weight: 500;
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease-in-out;
    border-radius: 4px;
    border: 0 none;
    outline: none;
    text-decoration: none;
    font-family: var(--font-secondary);
    text-transform: capitalize;
}
@media (max-width: 768px) {
    .button-area-banner-one {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
    }
    
    .tmp-btn.hover-icon-reverse {
        display: inline-flex !important;
        width: auto !important;
        flex: none !important;
        margin: 0 !important;
    }
}

/* Mutual Funds Table Styles */
.mutual-funds-table-section {
    padding: 80px 0;
}

.mutual-funds-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.mutual-funds-table th {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #3d5afe 100%);
    color: white;
    padding: 20px 15px;
    text-align: center;
    font-weight: bold;
    font-size: 1.4rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.mutual-funds-table td {
    padding: 18px 15px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1.35rem;
    color: #4b5563;
    font-weight: bold;
    text-align: center;
}

.mutual-funds-table tr:last-child td {
    border-bottom: none;
}

.mutual-funds-table tr:hover {
    background-color: rgba(255, 110, 0, 0.03);
}

.return-positive {
    color: #10b981;
    font-weight: 600;
}

.risk-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: 500;
}

.risk-low {
    background-color: #d1fae5;
    color: #065f46;
}

.table-contact-btn {
    background: var(--primary-orange);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    text-decoration: none !important;
    font-weight: bold;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.table-contact-btn:hover {
    background: transparent;
    color: var(--primary-orange);
    border-color: var(--primary-orange);
    transform: translateY(-2px);
}

/* Responsive Table */
@media (max-width: 768px) {
    .table-responsive {
        overflow-x: auto;
    }
    
    .mutual-funds-table {
        min-width: 800px;
    }
    
    .mutual-funds-table th,
    .mutual-funds-table td {
        padding: 15px 10px;
        font-size: 1.2rem;
    }
}

/* Success and Error Messages */
.alert-success {
    background: #d1fae5;
    border: 1px solid #10b981;
    color: #065f46;
    padding: 15px;
    border-radius: 12px;
}

.alert-error {
    background: #fee2e2;
    border: 1px solid #ef4444;
    color: #dc2626;
    padding: 15px;
    border-radius: 12px;
}