* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 50px;
  padding-bottom: 10px;
  padding-top: 10px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: #fff;
  backdrop-filter: blur(10px);
}
.logo {
  font-size: 24px;
  font-weight: bold;
  color: #03116b;
}
.logo img {
    height: 100px;
    width: auto;
    margin-right: 10px;
    vertical-align: middle;
}
.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  color: #03116b;
}
.nav-links a {
  color: #03116b;
  font-weight: bold;
  font-size: large;
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: #2010c7;
}
.join-btn {
  background: linear-gradient(135deg, #00d9ff, #0099ff);
  padding: 12px 30px;
  margin: 10px 30px;
  border-radius: 25px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s;
}
.join-btn:hover {
  transform: scale(1.05);
}
.hero {
  padding: 150px 50px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  min-height: 100vh;
}
.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
  line-height: 1.2;
}
.hero-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #bbb;
  margin-bottom: 30px;
}
.open-account-btn {
  background: linear-gradient(135deg, #ff006b, #ff4d9e);
  padding: 15px 40px;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: transform 0.3s;
}
.open-account-btn:hover {
  transform: scale(1.05);
}
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}
.chart-container {
  width: 85%;
  max-width: 500px;
  height: 400px;
  background: linear-gradient(
    135deg,
    rgba(0, 217, 255, 0.1),
    rgba(0, 153, 255, 0.1)
  );
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 217, 255, 0.3);
  border: 1px solid rgba(0, 217, 255, 0.2);
}
.chart-line {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 1;
}
.chart-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px 20px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 217, 255, 0.3);
}
.chart-overlay h4 {
  color: #00d9ff;
  font-size: 14px;
  margin-bottom: 5px;
}
.chart-overlay p {
  color: #0f0;
  font-size: 24px;
  font-weight: bold;
}
.chart-bars {
  position: absolute;
  bottom: 30px;
  left: 30px;
  display: flex;
  gap: 10px;
  align-items: flex-end;
  height: 280px;
}
.bar {
  width: 14px;
  background: linear-gradient(to top, #00d9ff, #0099ff);
  border-radius: 7px 7px 0 0;
  animation: barGrow 2s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.6);
}
.bar:nth-child(1) {
  height: 140px;
  animation-delay: 0s;
}
.bar:nth-child(2) {
  height: 200px;
  animation-delay: 0.1s;
}
.bar:nth-child(3) {
  height: 120px;
  animation-delay: 0.2s;
}
.bar:nth-child(4) {
  height: 240px;
  animation-delay: 0.3s;
}
.bar:nth-child(5) {
  height: 170px;
  animation-delay: 0.4s;
}
.bar:nth-child(6) {
  height: 220px;
  animation-delay: 0.5s;
}
.bar:nth-child(7) {
  height: 150px;
  animation-delay: 0.6s;
}
.bar:nth-child(8) {
  height: 190px;
  animation-delay: 0.7s;
}
.bar:nth-child(9) {
  height: 160px;
  animation-delay: 0.8s;
}
@keyframes barGrow {
  0%,
  100% {
    transform: scaleY(1);
    opacity: 0.7;
  }
  50% {
    transform: scaleY(1.2);
    opacity: 1;
  }
}
.our-story {
  background: #111;
  padding: 80px 50px;
  margin: 50px;
  border-radius: 20px;
}
.our-story h2 {
  font-size: 36px;
  margin-bottom: 30px;
}
.our-story p {
  line-height: 1.8;
  color: #ccc;
}
.why-choose {
  padding: 80px 50px;
}
.why-choose h2 {
  font-size: 36px;
  margin-bottom: 50px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.feature-card {
  background: #111;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s;
}
.feature-card:hover {
  transform: translateY(-10px);
}
.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
}
.feature-number{
  font-weight: bold;
  font-size: 28px;
}
.feature-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}
.feature-card p {
  color: #999;
  font-size: 14px;
}

/* Founder Section Styles */
.founder-container {
    margin-top: 50px;
}
.founder-container h3 {
    font-size: 30px;
    margin-bottom: 40px;
    color: #00d9ff;
    text-align: center;
}
.founder-card {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.05), rgba(255, 0, 107, 0.05));
    padding: 50px;
    border-radius: 20px;
    display: grid;
    grid-template-columns: minmax(250px, 300px) 1fr; 
    gap: 50px;
    align-items: center;
    border: 2px solid rgba(0, 217, 255, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}
.founder-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.3);
}
.founder-image {
    width: 300px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid #00d9ff;
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.4);
     flex-shrink: 0;
}
.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.founder-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
     min-width: 0; 
    overflow: hidden;
}
.founder-details h4 {
    font-size: 32px;
    margin-bottom: 5px;
    color: #fff;
    background: linear-gradient(135deg, #00d9ff, #ff006b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.founder-details p.designation {
    color: #00d9ff;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}
.founder-details p.brief {
    color: #ccc;
    font-size: 16px;
    line-height: 1.8;
     word-wrap: break-word;  /* Add this */
    overflow-wrap: break-word; 
}
.founder-stats {
    display: flex;
    gap: 40px;
    margin-top: 20px;
}
.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 30px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    border: 2px solid rgba(0, 217, 255, 0.3);
    transition: all 0.3s;
}
.stat:hover {
    transform: scale(1.05);
    border-color: #00d9ff;
}
.stat-number {
    font-size: 28px;
    font-weight: bold;
    color: #00d9ff;
    margin-bottom: 5px;
}
.stat-label {
    font-size: 14px;
    color: #999;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 50px;
    background: #000;
}
.testimonials h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.testimonial-card {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.05), rgba(255, 0, 107, 0.05));
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(0, 217, 255, 0.2);
    position: relative;
    transition: all 0.3s;
}
.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.3);
    border-color: #00d9ff;
}
.quote-icon {
    font-size: 60px;
    color: #00d9ff;
    line-height: 1;
    margin-bottom: 20px;
    opacity: 0.3;
}
.testimonial-text {
    color: #ccc;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}
.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00d9ff, #ff006b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    color: #000;
    border: 3px solid #fff;
}
.author-info h4 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 5px;
}
.author-info p {
    font-size: 14px;
    color: #00d9ff;
}

/* Awards Section */
.awards {
    padding: 80px 50px;
    background: #111;
}
.awards h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
}
.awards-subtitle {
    text-align: center;
    color: #999;
    font-size: 16px;
    margin-bottom: 50px;
}
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.award-card {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.05), rgba(255, 0, 107, 0.05));
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(0, 217, 255, 0.2);
    transition: all 0.3s;
}
.award-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.3);
    border-color: #00d9ff;
}
.award-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 2px solid rgba(0, 217, 255, 0.3);
}
.award-card h4 {
    font-size: 18px;
    color: #fff;
    line-height: 1.4;
}

.offices {
  padding: 80px 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}
.office-card {
  background: #111;
  padding: 40px;
  border-radius: 15px;
}
.office-card h3 {
  color: #ff006b;
  font-size: 18px;
  margin-bottom: 20px;
}
.office-card h4 {
  font-size: 20px;
  margin-bottom: 20px;
}
.office-card ul {
  list-style: none;
}
.office-card li {
  margin-bottom: 15px;
  color: #ccc;
}
.office-card a {
  color: #00d9ff;
  text-decoration: none;
  transition: all 0.3s;
}
.office-card a:hover {
  color: #ff006b;
  text-decoration: underline;
}
.solutions {
  padding: 80px 50px;
}
.solutions h2 {
  font-size: 36px;
  margin-bottom: 50px;
}
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.solution-card {
  background: #111;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s;
}
.solution-card:hover {
  transform: translateY(-10px);
}
.solution-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 15px;
  background: linear-gradient(
    135deg,
    rgba(0, 217, 255, 0.1),
    rgba(255, 0, 107, 0.1)
  );
  border: 2px solid rgba(0, 217, 255, 0.3);
}
.solution-card:nth-child(1) .solution-icon {
  background: linear-gradient(
    135deg,
    rgba(0, 217, 255, 0.15),
    rgba(0, 153, 255, 0.15)
  );
  border-color: rgba(0, 217, 255, 0.4);
}
.solution-card:nth-child(2) .solution-icon {
  background: linear-gradient(
    135deg,
    rgba(255, 170, 0, 0.15),
    rgba(255, 200, 0, 0.15)
  );
  border-color: rgba(255, 170, 0, 0.4);
}
.solution-card:nth-child(3) .solution-icon {
  background: linear-gradient(
    135deg,
    rgba(0, 255, 136, 0.15),
    rgba(0, 200, 100, 0.15)
  );
  border-color: rgba(0, 255, 136, 0.4);
}
.solution-card:nth-child(4) .solution-icon {
  background: linear-gradient(
    135deg,
    rgba(255, 0, 107, 0.15),
    rgba(255, 77, 158, 0.15)
  );
  border-color: rgba(255, 0, 107, 0.4);
}
.solution-card:nth-child(5) .solution-icon {
  background: linear-gradient(
    135deg,
    rgba(138, 43, 226, 0.15),
    rgba(186, 85, 211, 0.15)
  );
  border-color: rgba(138, 43, 226, 0.4);
}
.solution-card:nth-child(6) .solution-icon {
  background: linear-gradient(
    135deg,
    rgba(0, 217, 255, 0.15),
    rgba(0, 255, 136, 0.15)
  );
  border-color: rgba(0, 217, 255, 0.4);
}
.solution-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}
.solution-card p {
  color: #999;
  font-size: 14px;
}
footer {
  background: 
    linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.98)),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><defs><linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:rgb(0,217,255);stop-opacity:0.1" /><stop offset="100%" style="stop-color:rgb(255,0,107);stop-opacity:0.1" /></linearGradient></defs><path fill="none" stroke="url(%23grad1)" stroke-width="2" d="M0,200 Q150,150 300,180 T600,200 T900,160 T1200,190" opacity="0.3"/><path fill="none" stroke="url(%23grad1)" stroke-width="2" d="M0,220 Q150,170 300,200 T600,220 T900,180 T1200,210" opacity="0.2"/><circle cx="200" cy="180" r="3" fill="%2300d9ff" opacity="0.6"/><circle cx="400" cy="200" r="3" fill="%23ff006b" opacity="0.6"/><circle cx="600" cy="190" r="3" fill="%2300d9ff" opacity="0.6"/><circle cx="800" cy="170" r="3" fill="%23ff006b" opacity="0.6"/><circle cx="1000" cy="200" r="3" fill="%2300d9ff" opacity="0.6"/></svg>'), 
    #ffffff;
  background-size: cover;
  background-position: center;
  padding: 60px 50px 30px;
  margin-top: 50px;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #00d9ff, #ff006b, #00d9ff);
  opacity: 0.5;
}
.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.footer-section h3 {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}
.footer-section h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: currentColor;
}
.footer-section:nth-child(1) h3 {
  color: #00d9ff;
}
.footer-section:nth-child(2) h3 {
  color: #ff006b;
}
.footer-section:nth-child(3) h3 {
  color: #ffaa00;
}
.footer-section:nth-child(4) h3 {
  color: #00ff88;
}
.footer-section ul {
  list-style: none;
}
.footer-section li {
  margin-bottom: 10px;
}
.footer-section a {
  color: #000;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}
.footer-section a:hover {
  color: #666;
  transform: translateX(5px);
}
.footer-company {
  line-height: 1.8;
  color: #bbb;
}
footer p{
  color: #000;
  font-weight: 700;
}
footer a{
  color: #000;
}
.footer-company .logo {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #00d9ff, #ff006b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.map-container {
  margin-top: 20px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid rgba(0, 217, 255, 0.3);
}
.map-container iframe {
  width: 100%;
  height: 200px;
  border: none;
  filter: grayscale(1) invert(0.9) contrast(1.2);
}
.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #666;
}
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color:  #000;
  font-size: 28px;
  cursor: pointer;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.98);
  padding: 20px;
  z-index: 999;
}
.mobile-menu.active {
  display: block;
}
.mobile-menu ul {
  list-style: none;
}
.mobile-menu li {
  margin-bottom: 20px;
}
.mobile-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  display: block;
  padding: 10px;
}
.sticky-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px; 
    background-color: #25d366; 
    color: white;
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    border-radius: 50%;
    font-size: 2.2em;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 900;
}


.solution-preview {
    margin-bottom: 15px;
    transition: opacity 0.4s ease-in-out;
}

.solution-full {
    margin-bottom: 15px;
    transition: opacity 0.4s ease-in-out, max-height 0.5s ease-in-out;
    overflow: hidden;
    text-align: justify;
}

.solution-preview.fade-out {
    opacity: 0;
}

.solution-full.fade-in {
    opacity: 1;
}

.solution-full.fade-out {
    opacity: 0;
}

.read-more-btn {
    background: transparent;
    color: #00d9ff;
    border: 1px solid #00d9ff;
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.read-more-btn:hover {
    background: #00d9ff;
    color: #0a0a1a;
    transform: translateY(-2px);
}

.solution-card {
    transition: all 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 1000px;
    }
}

@media (max-width: 1200px) {
  .founder-card {
    padding: 40px 30px;
    gap: 30px;
  }
}

@media (max-width: 1024px) {
  .founder-card {
    grid-template-columns: 1fr;
    padding: 40px 30px;
    gap: 30px;
  }
  .founder-image {
    width: 100%;
    max-width: 350px;
    height: 450px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 20px 30px;
  }
  .nav-links {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  .join-btn {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 120px 20px 50px;
    gap: 30px;
  }
  .hero-content h1 {
    font-size: 28px;
  }
  .hero-content p {
    font-size: 14px;
  }
  .chart-container {
    height: 300px;
    width: 100%;
    max-width: none;
  }
  .chart-overlay {
    top: 10px;
    right: 10px;
    padding: 10px 15px;
  }
  .chart-overlay h4 {
    font-size: 12px;
  }
  .chart-overlay p {
    font-size: 18px;
  }
  .chart-bars {
    bottom: 15px;
    left: 15px;
    height: 180px;
    gap: 6px;
  }
  .bar {
    width: 10px;
  }
  .bar:nth-child(1) {
    height: 80px;
  }
  .bar:nth-child(2) {
    height: 120px;
  }
  .bar:nth-child(3) {
    height: 70px;
  }
  .bar:nth-child(4) {
    height: 140px;
  }
  .bar:nth-child(5) {
    height: 100px;
  }
  .bar:nth-child(6) {
    height: 130px;
  }
  .bar:nth-child(7) {
    height: 90px;
  }
  .bar:nth-child(8) {
    height: 110px;
  }
  .bar:nth-child(9) {
    height: 95px;
  }
  .our-story {
    padding: 50px 20px;
    margin: 20px;
  }
  .our-story h2 {
    font-size: 28px;
  }
  .our-story p {
    font-size: 14px;
  }
  
  /* Founder Mobile Styles */
  .founder-card {
    grid-template-columns: 1fr;
    padding: 30px 20px;
    gap: 30px;
  }
  .founder-image {
    width: 100%;
    height: 400px;
    margin: 0 auto;
  }
  .founder-image img {
    object-fit: cover;  
    object-position: center top;  
  }
  .founder-details h4 {
    font-size: 26px;
    text-align: center;
  }
  .founder-details p.designation {
    font-size: 18px;
    text-align: center;
  }
  .founder-details p.brief {
    font-size: 15px;
    text-align: center;
  }
  .founder-stats {
    flex-direction: column;
    gap: 15px;
  }
  .stat {
    width: 100%;
    padding: 15px 20px;
  }
  
  .why-choose {
    padding: 50px 20px;
  }
  .why-choose h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .feature-card {
    padding: 30px 20px;
  }
  
  /* Testimonials Mobile */
  .testimonials {
    padding: 50px 20px;
  }
  .testimonials h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .testimonial-card {
    padding: 30px 20px;
  }
  .quote-icon {
    font-size: 50px;
  }
  .testimonial-text {
    font-size: 15px;
  }
  
  /* Awards Mobile */
  .awards {
    padding: 50px 20px;
  }
  .awards h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }
  .awards-subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }
  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .award-card {
    padding: 20px;
  }
  .award-card img {
    height: 150px;
  }
  .award-card h4 {
    font-size: 16px;
  }
  
  .offices {
    padding: 50px 20px;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .office-card {
    padding: 30px 20px;
  }
  .office-card h3 {
    font-size: 16px;
  }
  .office-card h4 {
    font-size: 18px;
  }
  .office-card li {
    font-size: 14px;
  }
  .solutions {
    padding: 50px 20px;
  }
  .solutions h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .solution-card {
    padding: 30px 20px;
  }
  footer {
    padding: 40px 20px 20px;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .map-container iframe {
    height: 250px;
  }
  .footer-section h3 {
    font-size: 16px;
  }
  .footer-section p,
  .footer-section li {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .logo {
    font-size: 20px;
  }
  .hero-content h1 {
    font-size: 24px;
  }
  .open-account-btn {
    padding: 12px 30px;
    font-size: 14px;
  }
  .feature-icon,
  .solution-icon {
    font-size: 36px;
  }
  .feature-card h3,
  .solution-card h3 {
    font-size: 18px;
  }
  
  /* Founder Small Mobile */
  .founder-container h3 {
    font-size: 24px;
  }
  .founder-card {
    padding: 20px 15px;
  }
  .founder-image {
    height: 300px;
  }
  .founder-details h4 {
    font-size: 22px;
  }
  .founder-details p.designation {
    font-size: 16px;
  }
  .founder-details p.brief {
    font-size: 14px;
  }
  .stat-number {
    font-size: 24px;
  }
  .stat-label {
    font-size: 12px;
  }
  
  /* Testimonials Small Mobile */
  .testimonials h2 {
    font-size: 24px;
  }
  .testimonial-card {
    padding: 25px 15px;
  }
  .quote-icon {
    font-size: 40px;
  }
  .testimonial-text {
    font-size: 14px;
  }
  .author-avatar {
    width: 50px;
    height: 50px;
    font-size: 16px;
  }
  .author-info h4 {
    font-size: 16px;
  }
  .author-info p {
    font-size: 12px;
  }
  
  /* Awards Small Mobile */
  .awards h2 {
    font-size: 24px;
  }
  .awards-subtitle {
    font-size: 13px;
  }
  .awards-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .award-card {
    padding: 15px;
  }
  .award-card img {
    height: 180px;
  }
  .award-card h4 {
    font-size: 15px;
  }
  
  .solutions-grid {
    grid-template-columns: 1fr;
  }
  .chart-container {
    height: 280px;
  }
  .chart-bars {
    height: 160px;
    gap: 5px;
  }
  .bar {
    width: 9px;
  }
  .bar:nth-child(1) {
    height: 70px;
  }
  .bar:nth-child(2) {
    height: 110px;
  }
  .bar:nth-child(3) {
    height: 60px;
  }
  .bar:nth-child(4) {
    height: 130px;
  }
  .bar:nth-child(5) {
    height: 90px;
  }
  .bar:nth-child(6) {
    height: 120px;
  }
  .bar:nth-child(7) {
    height: 80px;
  }
  .bar:nth-child(8) {
    height: 100px;
  }
  .bar:nth-child(9) {
    height: 85px;
  }
}