/* Reset & Box Sizing */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #f9f9f9;
  color: #222;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 15px;
}

/* Top Bar */
.top-bar {
  background: #757575;
  color: #e6e3e3;
  font-size: 14px;
  padding: 10px 0;
  text-align: center;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Header */
header {
  background: rgb(175, 161, 251);
  box-shadow: 0 2px 5px rgba(236, 233, 233, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  flex-wrap: wrap;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
 width: 127px;
    height: 75px;
}

.logo-text h1 {
  font-size: 20px;
  color: #013e70;
  margin: 0;
  font-weight: bold;
  line-height: 1;
}

.logo-text p {
  font-size: 12px;
  color: #f39c12;
  margin: 0;
  line-height: 1;
}

/* Navbar */
.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navbar ul li a {
  text-decoration: none;
  color: #101010;
  font-weight: 500;
  transition: color 0.3s;
}

.navbar ul li a:hover {
  color: #f39c12;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* Login Button */
.login-btn {
  padding: 8px 15px;
  background-color: hsl(307, 85%, 63%);
  color: #141414 !important;
  border-radius: 5px;
  transition: 0.3s;
  font-weight: 500;
}

.login-btn:hover {
  background-color: #f39c12;
  color: #000 !important;
}

/* Background Image Section */
.bg-image-section {
  background-image: url('image/rm222batch3-mind-03.jpg'); /* Your image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  position: relative;
  padding: 40px 20px;
}

.bg-image-section h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.bg-image-section p {
  font-size: 1.2rem;
}

/* Responsive Image */
img {
     max-width: 71%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}

/* Responsive Queries */
@media (max-width: 768px) {
  .navbar {
    display: none;
    width: 100%;
    background: #fddfdf;
  }

  .navbar.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 10px 0;
  }

  .navbar ul {
    flex-direction: column;
    align-items: center;
  }

  .hamburger {
    display: block;
  }

  .top-bar .container {
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }

  .bg-image-section {
    min-height: 400px;
    padding: 30px 15px;
  }

  .bg-image-section h2 {
    font-size: 2rem;
  }

  .bg-image-section p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .bg-image-section {
    min-height: 300px;
    padding: 20px 10px;
  }

  .bg-image-section h2 {
    font-size: 1.5rem;
  }

  .bg-image-section p {
    font-size: 0.95rem;
  }
}  .about-company {
  padding: 60px 20px;
  background-color: #f5f5f5;
}

.about-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 40px;
  transition: 0.3s ease;
}

.about-wrapper:hover {
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.about-text {
  flex: 1 1 55%;
}

.about-text h2 {
  font-size: 2rem;
  color: #013e70;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.6;
}

.about-image {
  flex: 1 1 40%;
}

.about-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Button */
.btn-apply {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #013e70;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  transition: 0.3s;
}

.btn-apply:hover {
  background-color: #f39c12;
  color: #000;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .about-wrapper {
    flex-direction: column;
    padding: 20px;
  }

  .about-text, .about-image {
    flex: 1 1 100%;
  }

  .about-text h2 {
    font-size: 1.6rem;
  }

  .about-text p {
    font-size: 1rem;
  }
}


    .services-header {
      text-align: center;
      margin-bottom: 40px;
    }

   .services-header h1 {
      font-size: 36px;
      color: #007bff;
      margin-bottom: 10px;
    }

    .services-header p {
      font-size: 20px;
      color: #333;
    }

    .features-section {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .feature-box {
      border-radius: 15px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      padding: 25px;
      transition: all 0.3s ease;
      text-align: center;
      border: 2px solid transparent;
    }

    .feature-box:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
      border-radius: 20px;
    }

    .feature-icon {
      font-size: 40px;
      color: #007bff;
      margin-bottom: 15px;
      transition: color 0.3s;
    }

    .feature-box:hover .feature-icon {
      color: #0056b3;
    }

    .feature-title {
      font-size: 20px;
      font-weight: bold;
      margin-bottom: 10px;
      color: #333;
      transition: color 0.3s;
    }

    .feature-box:hover .feature-title {
      color: #1774de;
    }

    .feature-text {
      font-size: 15px;
      line-height: 1.5;
    }


.consult-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.consult-container {
  position: relative;
  background-color: #007bff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 40px;
  gap: 40px;
  z-index: 2;
  margin-top: 29px;
  flex-wrap: wrap;
}

.consult-content {
  flex: 1;
  max-width: 600px;
}

.consult-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #fef9f9;
}

.consult-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #f7f6f6;
}

.consult-btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: #f20bb5;
  color: #e7eaee;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.consult-btn:hover {
  background-color: #e40606;
}

.consult-image-side {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.consult-image-side img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .consult-container {
    flex-direction: column;
    text-align: center;
  }

  .consult-content {
    max-width: 100%;
  }

  .consult-image-side {
    margin-top: 20px;
  }

  .consult-image-side img {
    width: 80%;
  }
}
  
    .team-section {
      padding: 50px 20px;
      background-color: #9feefa;
      text-align: center;
    }

    .team-section h2 {
      font-size: 36px;
      margin-bottom: 20px;
      color: #2c3e50;
    }

    .team-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
    }

    .team-card {
      background-color: #f8eeee;
      border-radius: 15px;
      box-shadow: 0 4px 8px rgba(246, 240, 240, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      width: 300px;
      padding: 25px;
      border: 2px solid transparent;
    }

    .team-card:hover {
      transform: translateY(-5px);
      border: 2px solid #3498db;
      box-shadow: 0 6px 12px rgba(0,0,0,0.2);
    }

    .team-card h3 {
      margin: 10px 0 5px;
      font-size: 22px;
      color: #0b0b0b;
    }

    .team-card p {
      margin: 5px 0;
      color: #0f0f0f;
      font-size: 16px;
    }

    @media (max-width: 768px) {
      .team-grid {
        flex-direction: column;
        align-items: center;
      }
    }
.team-photo {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 3px solid #3498db;
}

.footer-section {
  background-image: url('image/finance-text-with-pie-chart-graph-white-background-min.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed; 
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 60px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
  position: relative;
  z-index: 1;
}

.footer-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 10, 35, 0.85); /* dark overlay for readability */
  z-index: -1;
}


.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-box {
  flex: 1 1 220px;
  min-width: 220px;
}

.footer-logo {
  max-width: 180px;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
}

.footer-box h4 {
  margin-bottom: 20px;
  font-size: 18px;
  color: #ffffff;
}

.footer-box p,
.footer-box a,
.footer-box li {
  font-size: 15px;
  line-height: 1.6;
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 10px;
}

.footer-box a:hover {
  color: #00bcd4;
  text-decoration: underline;
}

.footer-social a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  color: #ccc;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-social a:hover {
  color: #00bcd4;
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #fbfbfb;
  padding-top: 15px;
  font-size: 14px;
  color: #aaa;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-logo {
    max-width: 140px;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  font-size: 28px;
  padding: 14px;
  border-radius: 50%;
  box-shadow: 0 5px 10px rgba(0,0,0,0.3);
  z-index: 99;
  text-align: center;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1);
}
