* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}



@media (max-width: 768px) {
  .sticky-form {
    display: none;
  }
}

@media (max-width: 768px) {
  .main-content {
    width: 100% !important;

  }
}

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
  font-family: 'Roboto', sans-serif;
  background-color: #f4f7fa;
  margin: 0;
  padding: 0;
}

body {

  padding: 20px;
  background-color: #f4f4f9;
}


.colour-green {
  color: #28a745 !important;
  /* Green color */
}

.colour-red {
  color: #dc3545 !important;
  /* Red color */
}


.container {
  display: flex;
  width: 100%;
  max-width: 1200px;
}

.main-content {
  width: 70%;
  padding: 20px;
  background-color: #ffffff;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  margin-right: 20px;
}

.sticky-form {
  width: 30%;
  height: 420px;
  position: sticky;
  top: 20px;
  padding: 20px;
  background-color: #ffffff;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.sticky-form h2 {
  margin-bottom: 15px;
  color: #333;
}

.sticky-form form {
  display: flex;
  flex-direction: column;
}

.sticky-form label {
  margin-bottom: 5px;
  font-weight: bold;
  color: #555;
}

.sticky-form input,
.sticky-form textarea {
  margin-bottom: 15px;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.sticky-form input:focus {
  border-color: #4d33f7;
  background-color: #ffffff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(77, 51, 247, 0.2);
}

.sticky-form button {
  padding: 10px;
  font-size: 16px;
  background: linear-gradient(45deg, #4d33f7, #6f7cff);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.5 ease;

}

.sticky-form button:hover {
  background: linear-gradient(45deg, #514eef, #f37055);
  transform: translateY(-2px);
}





.title-1 {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin: 20px;
  transition: transform 0.3s ease-in-out;
}

.title-1:hover {
  transform: translateY(-10px);
}

.title-1 h1 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: bold;
}

.title-1 p {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #555;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .title-1 h1 {
    font-size: 1.75rem;
  }

  .title-1 p {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .title-1 {
    margin: 10px;
    padding: 15px;
  }

  .title-1 h1 {
    font-size: 1.5rem;
  }

  .title-1 p {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .title-1 {
    margin: 5px;
    padding: 10px;
  }

  .title-1 h1 {
    font-size: 1.25rem;
  }

  .title-1 p {
    font-size: 0.85rem;
  }
}


.table-container {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  color: #000000;
  font-weight: bold;
}

th,
td {
  padding: 15px;
  text-align: left;
  font-weight: bold;
}

th {
  background: linear-gradient(45deg, #f71f1f, #923737) !important;
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  font-weight: bold;
}

td {
  font-size: 0.95rem;
  font-weight: 300;
  border-bottom: 1px solid #444;
  font-weight: bold;
}

tr:hover {
  background-color: #540a79;
  color: #fff; /* This changes the text color to white when the row is hovered */
}

tr:hover td, tr:hover th {
  color: #fff; /* Ensures that text in both th and td will be white on hover */
}

.highlight {
  font-weight: 600;
  color: #4fde07;
}




.company-overview {
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.company-overview h1 {
  text-align: center;
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 20px;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.overview-item {
  background-color: #eaeaea;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.overview-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.overview-item i {
  font-size: 2.5rem;
  color: #ff2020;
  margin-bottom: 10px;
}

.overview-item h2 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 10px;
}

.overview-item p {
  font-size: 1.2rem;
  color: #555;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .overview-grid {
    grid-template-columns: 1fr;
  }

  .company-overview h1 {
    font-size: 2rem;
  }

  .overview-item h2 {
    font-size: 1.3rem;
  }

  .overview-item p {
    font-size: 1rem;
  }
}







.IM-why-invest {
  max-width: 1200px;
  margin: 20px auto;
  padding: 40px 20px;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.IM-title {
  text-align: center;
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: bold;
}

.IM-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.IM-reason {
  display: flex;
  align-items: center;
  padding: 20px;
  background-color: #eaeaea;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.IM-reason:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.IM-reason i {
  font-size: 2.5rem;
  color: #ff2020;
  margin-right: 15px;
}

.IM-reason p {
  font-size: 1.2rem;
  color: #555;
  flex: 1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .IM-title {
    font-size: 2rem;
  }

  .IM-reason {
    flex-direction: column;
    align-items: flex-start;
  }

  .IM-reason i {
    margin-bottom: 10px;
  }

  .IM-reason p {
    font-size: 1rem;
  }
}





.IM-1-brokerage-charges {
  max-width: 1200px;
  margin: 20px auto;
  padding: 40px 20px;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.IM-1-title {
  width: 100%;
  text-align: center;
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: bold;
}

.IM-1-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.IM-1-card {
  display: flex;
  align-items: center;
  padding: 20px;
  background-color: #eaeaea;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.IM-1-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.IM-1-card i {
  font-size: 2.5rem;
  color: #ff2020;
  margin-right: 15px;
}

.IM-1-card h2 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 10px;
}

.IM-1-card p {
  font-size: 1.2rem;
  color: #555;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .IM-1-container {
    grid-template-columns: 1fr;
  }

  .IM-1-title {
    font-size: 2rem;
  }

  .IM-1-card h2 {
    font-size: 1.3rem;
  }

  .IM-1-card p {
    font-size: 1rem;
  }
}




/* Base Styling */
body {
  font-family: 'Raleway', sans-serif;
  color: #333;
  background-color: #f9f9f9;
  margin: 0;
  padding: 0;
}

:root {
  --primary-color: #007bff;
  --primary-hover: #0056b3;
  --secondary-color: #333;
  --background-light: #f9f9f9;
  --box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.calculation-content-box {
  background: var(--background-light);
  padding: 30px;
  border-radius: 16px;
  box-shadow: var(--box-shadow);
  margin: 20px auto;
  max-width: 800px;
  transition: transform 0.3s ease;
}

.calculation-content-box:hover {
  transform: translateY(-5px);
}

/* Tab Menu Styling */
.tab-menu ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  margin: 0;
  gap: 20px;
}

.tab-menu ul li {
  margin: 0;
}

.tab-menu ul li a {
  text-decoration: none;
  color: var(--secondary-color);
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.tab-menu ul li a.active,
.tab-menu ul li a:hover {
  background-color: var(--primary-color);
  color: #fff;
}

/* Tab Content Styling */
.tab-main-box {
  margin-top: 20px;
}

.tab-box {
  display: none;
}

.tab-box.active {
  display: block;
}

/* Brokerage Charges Styling */
.head-text-box {
  padding: 20px;
  background-color: #f1f1f1;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.head-title span {
  font-size: 1.1rem;
  color: var(--secondary-color);
}

.head-title strong {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: bold;
}

/* Button Detail */
.btn-detail {
  font-size: 0.9rem;
  color: #555;
  padding: 10px;
}

.calculation-detail-box .btn-calc-detail {
  background: var(--primary-color);
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.calculation-detail-box .btn-calc-detail:hover {
  background: var(--primary-hover);
  transform: translateY(-4px);
}

/* Responsiveness */
@media (max-width: 768px) {
  .tab-menu ul {
    flex-direction: column;
    align-items: center;
  }

  .calculation-content-box {
    padding: 20px;
  }
}




.IM-2-card {
  background-color: #ffffff;
  padding: 20px;
  width: 100%;
  max-width: 800px;

}



.IM-2-title {
  color: #333;
  font-size: 1.8em;
  margin-bottom: 10px;
}

.IM-2-description {
  color: #555;
  font-size: 1.1em;
  line-height: 1.6;
}

.IM-2-more-text,
.IM-2-expanded-content {
  display: none;
}

.IM-2-read-more {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  font-size: 1em;
  color: #ffffff;
  background-color: #007BFF;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.IM-2-read-more:hover {
  background-color: #0056b3;
}

.IM-2-expanded-content {
  margin-top: 20px;
  color: #555;
  font-size: 1em;
  line-height: 1.6;
  transition: opacity 0.3s;
}

.IM-2-expanded-content h3 {
  font-size: 1.4em;
  color: #333;
  margin-top: 20px;
}

.IM-2-expanded-content ul {
  margin: 10px 0;
  padding-left: 20px;
  list-style-type: disc;
}

.IM-2-expanded-content p {
  margin-bottom: 15px;
}


















/* Resetting some default styles */


.IM-4-container {
  width: 100%;
  margin: 50px auto;
  padding: 10px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.IM-4-container h1 {
  text-align: center;
  font-size: 1.5rem;
  color: #2d3748;
  margin-bottom: 30px;
  font-weight: 600;
  text-transform: uppercase;
}

.IM-4-container p {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 30px;
  color: #666;


}

.IM-4-section {
  padding: 20px;
  background-color: #fafafa;
  border-radius: 8px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.IM-4-section h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
  display: inline-block;
}

.IM-4-section h2:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-color: #f79533;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.IM-4-section:hover {
  background-color: #e2e8f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.IM-4-section:hover h2:before {
  transform: translateY(-50%) scale(1.3);
}

.IM-4-section p {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.6;
  text-align: justify;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .IM-4-container {
    width: 95%;
  }

  .IM-4-container h1 {
    font-size: 2rem;
  }

  .IM-4-section h2 {
    font-size: 1.5rem;
  }
}




.IM-4-heading {
  font-family: 'Raleway', sans-serif;
  font-size: 3.2rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: bold;
  text-align: center;
}

.IM-4-text {
  font-family: 'Raleway', sans-serif;
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
}


















.IM-5 {
  background-image: url('stats.png');
  /* Replace with your image URL */
  background-size: cover;
  background-position: center;
  /* padding: 60px 20px; */
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.IM-5-content {
  background: rgba(0, 0, 0, 0.5);
  /* Semi-transparent background */
  padding: 30px;
  border-radius: 15px;
  /* max-width: 1200px; */
  width: 100%;
  height: 100%;
  text-align: center;
}

.IM-5-section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #f79533;
  /* Maroon or a suitable highlight color */
}

.IM-5-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #ffffff;
  line-height: 1.6;
}

.IM-5-stats-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.IM-5-stat-item {
  background: rgba(255, 255, 255, 0.2);
  padding: 20px;
  border-radius: 10px;
  width: calc(33.33% - 20px);
  margin-bottom: 20px;
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.IM-5-stat-item h3 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.IM-5-stat-item p {
  font-size: 1rem;
}

.IM-5-stat-item:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
  .IM-5-stat-item {
    width: calc(50% - 20px);
  }
}

@media (max-width: 480px) {
  .IM-5-stat-item {
    width: 100%;
  }
}











.IM-5-finance-section {
  text-align: center;
  padding: 50px 0;
  /* background-color: #f5f5f5; */
}

.IM-5-section-title {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: bold;
  transition: color 0.3s ease-in-out;
}

.IM-5-section-title:hover {
  color: #ff2020;
}

.IM-5-section-description {
  font-size: 1.25rem;
  color: #555;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.IM-5-icon-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-items: center;
}

.IM-5-icon-item {
  text-align: center;
  width: 100%;
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.IM-5-icon-item:hover {

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.IM-5-icon-image {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 10px;
  transition: transform 0.3s ease-in-out;
}

.IM-5-icon-item:hover .IM-5-icon-image {
  transform: scale(1.5);
}

.IM-5-icon-item p {
  font-size: 1.2rem;
  color: #333;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .IM-5-icon-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .IM-5-icon-container {
    grid-template-columns: 1fr;
  }

  .IM-5-section-title {
    font-size: 2rem;
  }

  .IM-5-section-description {
    font-size: 1rem;
  }
}





/* General Grid Container with Specific Class Name */
.IM-7-platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
  padding: 15px;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

/* Flexbox Container for each Item */
.IM-7-platform-item {
  display: flex;
  align-items: center;
  background-color: #f5f5f5;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 100px;
  /* Make the card smaller */
}

.IM-7-platform-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Icon Styles */
.IM-7-icon {
  font-size: 30px;
  /* Adjust icon size */
  color: #3498db;
  /* Icon color */
  margin-right: 15px;
  /* Space between icon and text */
}

/* Content (Text) Styling */
.IM-7-text-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  /* Align text to the left */
}

.IM-7-text-content h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #333;
}

.IM-7-text-content p {
  margin-top: 5px;
  font-size: 1rem;
  color: #666;
}

/* Available Text Green */
.IM-7-available {
  color: green;
}

/* NA Text Red */
.IM-7-na {
  color: red;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .IM-7-platforms-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }

  .IM-7-platform-item {
    padding: 12px;
  }

  .IM-7-icon {
    font-size: 25px;
  }

  .IM-7-text-content h3 {
    font-size: 1rem;
  }

  .IM-7-text-content p {
    font-size: 0.9rem;
  }
}

/* Mobile View for even smaller screens */
@media (max-width: 480px) {
  .IM-7-platforms-grid {
    grid-template-columns: 1fr;
  }

  .IM-7-platform-item {
    padding: 10px;
  }

  .IM-7-icon {
    font-size: 22px;
  }

  .IM-7-text-content h3 {
    font-size: 0.9rem;
  }

  .IM-7-text-content p {
    font-size: 0.8rem;
  }
}




.kotak-securities-container {
  border-radius: 10px;
  padding: 20px;
  width: 100%;
  font-family: Arial, sans-serif;
}

.kotak-securities-container h3 {
  color: #2a2a2a;
  font-size: 18px;
  margin-bottom: 10px;
}

.kotak-securities-container p {
  color: #555555;
  font-size: 14px;
  margin-bottom: 15px;
}

.kotak-securities-container ul {
  list-style-type: disc;
  margin-left: 20px;
}

.kotak-securities-container li {
  font-size: 14px;
  color: #333333;
  margin-bottom: 8px;
}


.headline-container {
  text-align: center;
  margin-bottom: 20px;
}

.headline {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  /* Adjust color as needed */
  margin: 0;
}

.headline-line {
  width: 100%;
  height: 5px;
  /* Increased height */
  background-color: red !important;
  /* Two-color gradient */
  border: none;
  margin-top: 10px;
  opacity: 1;
}













.IM-8-kotak-securities-app-features {
  background-color: #f4f4f4;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: 0 auto;
}

.IM-8-title {
  text-align: center;
  font-size: 2rem;
  color: #333;
  margin-bottom: 2rem;
}

.IM-8-feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
}

.IM-8-feature-item {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  background-color: #fff;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.IM-8-feature-icon {
  font-size: 30px;
  /* Icon size */
  margin-right: 1rem;
  color: #3498db;
  /* Icon color */
}

.IM-8-feature-title {
  font-size: 1rem;
  color: #555;
  margin-bottom: 0.5rem;
}

.IM-8-feature-status {
  font-size: 1.2rem;
  color: #2ecc71;
  /* Green color for Yes, can adjust if needed */
}

.IM-8-feature-status.type-no {
  color: #e74c3c;
  /* Red color for No */
}

.pargrap {
  background-color: #f8f9fa;
  /* Light background color */
  padding: 20px;
  /* Add padding for spacing */
  border-radius: 8px;
  /* Smooth corners */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  /* Subtle shadow for depth */
  max-width: 800px;
  /* Max width for readability */
  margin: 20px auto;
  /* Center the content */
  font-family: 'Raleway', sans-serif;
  /* Font style */
  line-height: 1.6;
  /* Improved line spacing */
  color: #333;
  /* Text color */
}

.pargrap p {
  font-size: 1.1rem;
  /* Slightly larger text for better readability */
  color: #555;
  /* Softer text color */
  margin-bottom: 15px;
  /* Space between paragraphs */
}

.pargrap p:last-child {
  margin-bottom: 0;
  /* Remove bottom margin from the last paragraph */
}




.IM-8-feature-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* Ensure there's space between the icon and the text */
  background-color: #fff;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.IM-8-feature-icon,
.IM-8-feature-title,
.IM-8-feature-status {
  flex: 1;
  /* This will make all items take equal space */
  display: flex;
  align-items: center;
  justify-content: center;
}

.IM-8-feature-icon {
  font-size: 30px;
  margin-right: 1rem;
  color: #3498db;
}

.IM-8-feature-title {
  font-size: 1rem;
  color: #555;
  margin-bottom: 0.5rem;
}

.IM-8-feature-status {
  font-size: 1.2rem;
  color: #2ecc71;
}

.IM-8-feature-status.type-no {
  color: #e74c3c;
}






.IM-Content-section {
  width: 80%;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
}

.IM-Content-headline {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  text-decoration: underline;
  margin-bottom: 10px;
}

.IM-Content-features-list {
  list-style: none;
  padding-left: 20px;
  margin-top: 10px;
}

.IM-Content-features-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.IM-Content-features-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-color: #ff6f00;
  border-radius: 50%;
}




.kotak-info {
  background: #f4f7fa;
  /* Light background for clean look */
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 20px auto;
  font-family: 'Raleway', sans-serif;
  color: #333;
}

.kotak-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 20px;
}

.kotak-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
  text-align: center;
}

.kotak-section {
  margin-bottom: 20px;
}

.kotak-subtitle {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2980b9;
  margin-bottom: 10px;
}

.kotak-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #7f8c8d;
  padding-left: 10px;
}

.kotak-info p {
  margin: 0 0 15px;
}

.kotak-info h3 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #16a085;
}

.kotak-info h2,
.kotak-info h3 {
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.kotak-section p {
  padding-left: 20px;
  border-left: 4px solid #2980b9;
  margin-top: 10px;
}


.kotak-list li {
  font-size: 1.1rem;
  margin-bottom: 10px;
  text-align: left;
}









.TYPE-Z-kotak-securities-section {
  width: 80%;
  margin: 30px auto;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  text-align: center;
}

.TYPE-Z-kotak-securities-section h2 {
  font-size: 2rem;
  color: #4e73df;
  margin-bottom: 20px;
}

.TYPE-Z-kotak-securities-section h2 i {
  margin-right: 10px;
}

.TYPE-Z-kotak-securities-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}

.TYPE-Z-row {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  border-bottom: 1px solid #e0e0e0;
}

.TYPE-Z-row:last-child {
  border-bottom: none;
}

.TYPE-Z-column {
  font-size: 1rem;
  color: #333;
}

.TYPE-Z-column strong {
  font-weight: bold;
}

.TYPE-Z-column {
  text-align: right;
}

@media (max-width: 768px) {
  .TYPE-Z-kotak-securities-section {
    width: 95%;
  }

  .TYPE-Z-kotak-securities-table {
    grid-template-columns: 1fr;
  }

  .TYPE-Z-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .TYPE-Z-column {
    text-align: left;
  }
}








/* Container for the title and grid */
.programs-container {
  padding: 40px 20px;
  background-color: #f4f4f4;
}

.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 30px;
  color: #333;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Grid container */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Individual card styling */
.program-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Image styling */
.program-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 2px solid #ddd;
  transition: opacity 0.3s ease;
}

.program-card:hover .program-img {
  opacity: 0.8;
}

/* Program info container */
.program-info {
  padding: 20px;
  text-align: center;
}

.program-info h3 {
  font-size: 1.5rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 10px;
}

.program-info p {
  font-size: 1.2rem;
  color: #007bff;
  font-weight: bold;
}




.IM-9-kotak-securities-review {
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.IM-9-title {
  font-size: 24px;
  color: #333;
  margin-bottom: 15px;
  font-weight: bold;
}

.IM-9-rating-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.IM-9-rating-item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: center;
  padding: 10px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.IM-9-rating-icon {
  font-size: 20px;
  color: #fbc02d;
  /* Default star color */
}

.colour-green {
  color: #4caf50;
}

.IM-9-rating-title {
  font-size: 16px;
  font-weight: bold;
  color: #555;
  margin-top: 18px;
}

.IM-9-rating-value {
  font-size: 16px;
  font-weight: normal;
  color: #333;
  margin-left: auto;
}

.IM-9-rating-item:hover {
  background-color: #f1f1f1;
  cursor: pointer;
}

.IM-9-rating-item .IM-9-rating-title {
  color: #333;
}

.IM-9-rating-item .IM-9-rating-value {
  color: #888;
}




.IM-9-kotak-securities-customer-support {
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.IM-9-title {
  font-size: 24px;
  color: #333;
  margin-bottom: 15px;
  font-weight: bold;
}

.IM-9-support-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.IM-9-support-item {
  width: calc(50% - 10px);
  /* 2 cards per row with spacing */
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.IM-9-support-icon {
  font-size: 20px;
  color: #fbc02d;
  /* Default icon color */
}

.colour-green {
  color: #4caf50;
}

.IM-9-support-title {
  font-size: 16px;
  font-weight: bold;
  color: #555;
  margin-top: 15px;
}

.IM-9-support-info {
  font-size: 16px;
  font-weight: normal;
  color: #333;
  margin-left: auto;
}

.IM-9-support-item:hover {
  background-color: #f1f1f1;
  cursor: pointer;
}

.IM-9-support-item .IM-9-support-title {
  color: #333;
}

.IM-9-support-item .IM-9-support-info {
  color: #888;
}

.IM-9-support-paragraph {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  margin-top: 20px;
  padding: 10px;
  background-color: #fff;
  border-radius: 8px;
}

.IM-9-support-paragraph a {
  color: #4caf50;
  text-decoration: none;
}

.IM-9-support-paragraph a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .IM-9-support-item {
    width: 100%;
    /* Stack to single column on smaller screens */
  }
}




.faq-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px;
  background: #f5f5f5;
  border-radius: 10px;
}

.faq-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 15px;
  background-color: #0077b5;
  color: white;
  font-size: 1.2rem;
  text-align: left;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #005f8a;
}

.faq-answer {
  display: none;
  padding: 15px;
  background-color: #f9f9f9;
  font-size: 1rem;
  color: #555;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question {
  background-color: #005f8a;
}

.contact-form-container {
  background: #f8f9fa;
  /* Light, modern background */
  color: #333;
  /* Darker, more readable text color */
  padding: 40px 50px;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  /* Softer shadow */
  width: 100%;
  max-width: 550px;
  /* Set max-width for better layout control */
  margin: 50px auto;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Hover effect for form container */
.contact-form-container:hover {
  transform: translateY(-5px);
  /* Slight lift effect */
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  /* Enhanced shadow on hover */
}

/* Contact form title */
.contact-form-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: #333;
}

/* Contact form styling */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Form input fields */
.contact-form .form-input {
  padding: 14px;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #f0f0f0;
  color: #333;
  transition: all 0.3s ease;
}

/* Focus state for form input fields */
.contact-form .form-input:focus {
  border-color: #4d33f7;
  background-color: #ffffff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(77, 51, 247, 0.2);
  /* Subtle focus ring */
}

/* Submit button */
.contact-form .form-submit {
  padding: 15px;
  font-size: 1rem;
  background: linear-gradient(45deg, #4d33f7, #6f7cff);
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

/* Hover effect for submit button */
.contact-form .form-submit:hover {
  background: linear-gradient(45deg, #514eef, #f37055);
  transform: translateY(-2px);
  /* Slight lift effect */
}

/* Media query for responsiveness */
@media (max-width: 480px) {
  .contact-form-container {
    padding: 30px;
    width: 90%;
  }
}



/* Base styles */
.logo-call {
  font-size: 18px;
  /* Slightly larger font for better visibility */
  color: #fff;
  /* White text for a cleaner look */
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
  /* Smooth transition on hover */
}

.logo-call i {
  color: #fefefe;
  /* Neon green for emphasis */
  margin-right: 8px;
  transition: transform 0.3s ease;
  /* Hover effect on the icon */
}

.logo-call a {
  color: #ffffff;
  /* Subtle lime green */
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 0.5px;
  /* Adds some spacing for modernity */
  transition: color 0.3s ease, transform 0.3s ease;
  /* Smooth color transition */
}


.logo-call a:hover {
  color: #f79533;
  /* Change color to a warm tone on hover */
  text-decoration: underline;
  transform: scale(1.05);
  /* Slight scale on hover */
}

/* Navbar styles */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  background-color: #222;
  /* Darker background for contrast */
  color: white;
  border-bottom: 2px solid #444;
  /* Adding a subtle border */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  /* Adding a slight shadow for depth */
}

.logo {
  font-size: 2rem;
  /* Increased size for the logo */
  font-weight: bold;
  letter-spacing: 1px;
  color: #fff;
}

.nav-links {
  list-style: none;
  display: flex;
  justify-content: space-evenly;
}

.nav-links li {
  margin-left: 2rem;
  /* Increased space for modern look */
  transition: transform 0.3s ease;
}

.nav-links li:hover {
  transform: translateY(-5px);
  /* Elevates the link on hover */
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  /* Slightly larger text for readability */
  font-weight: 500;
  transition: color 0.3s ease, transform 0.3s ease;
}

.nav-links a:hover {
  color: #f79533;
  /* Hover color on links */
  transform: translateX(5px);
  /* Small horizontal shift for hover effect */
}

/* Hamburger menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 30px;
  /* Wider for better visibility */
  background: white;
  margin: 4px;
  border-radius: 5px;
  /* Rounded corners for a modern look */
  transition: all 0.3s ease;
}

.hamburger:hover span {
  background: #f79533;
  /* Color change on hover */
}

@media (max-width: 768px) {
  .logo-call {
    font-size: 15px;
    margin-top: 10px;
  }

  .logo {
    font-size: 1.1rem;
  }

  .nav-links {
    z-index: 99;
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #333;
    padding: 1rem;
    border-top: 2px solid #444;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
  }

  .nav-links li {
    text-align: center;
    margin: 1rem 0;
    font-size: 1.2rem;
  }

  .hamburger {
    display: flex;
  }

  .nav-links.active {
    display: flex;
  }
}




/* Footer Container */
.footer {
  background-color: #333;
  color: white;
  padding: 40px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 20px;
}

.footer-column {
  flex: 1;
  text-align: left;
}

.footer-logo {
  width: 100px;
  margin-bottom: 10px;
}

/* Quick Links Navigation */
.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  position: relative;
  margin-bottom: 15px;
  font-size: 1.1em;
}

.footer-nav li::before {
  content: "•";
  color: orange;
  font-size: 1.2em;
  position: absolute;
  left: -20px;
  top: 0;
}

.footer-nav a {
  color: #ffd700;
  text-decoration: none;
}

.footer-nav a:hover {
  color: #ff8c00;
}

/* Contact Information with Icons */
.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 1.1em;
}

.icon-circle {
  background-color: #444;
  color: white;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 10px;
  font-size: 1.2em;
}

.footer-column a {
  color: #ffd700;
}

.footer-column a:hover {
  color: #ff8c00;
}

/* Privacy Policy Section */
.footer-bottom {
  text-align: center;
  margin-top: 20px;
}

.footer-divider {
  border: none;
  border-top: 1px solid #555;
  margin: 20px auto;
  width: 90%;
}

.privacy-policy {
  color: #ffd700;
  text-decoration: underline;
}

.privacy-policy:hover {
  color: #ff8c00;
}




/* Overall Section */
.banner-section {

  background-color: #f5f5f5;
  padding: 40px 20px;
}

.main-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
}

/* Left Part */
.left-part {
  flex: 1;
  padding-right: 20px;
}

.heading {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
}

.sub-heading {
  font-size: 1.5rem;
  color: #666;
  margin-top: 10px;
}

/* Right Part */
.right-part {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.banner-img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.info-box {
  margin-top: 20px;
  background-color: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.info-text {
  font-size: 1.2rem;
  color: #333;
}

.rating {
  margin-top: 10px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #5c0303;
}





/* Main Container */
.IM-half-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 20px;
  /* Add padding around the container */
  background-color: #f8f8f8;
  /* Light background for a modern feel */
  border-radius: 15px;
  /* Rounded corners */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  /* Subtle shadow */
}

/* Left Side for Logo */
.IM-left-side {
  width: 27%;
  /* Logo takes 30% width */
  display: flex;
  justify-content: center;
  align-items: center;
}

.IM-logo {
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease-in-out;
  /* Smooth hover effect */
}

.IM-logo:hover {
  transform: scale(1.1);
  /* Logo scales up slightly on hover */
}

/* Right Side for Text */
.IM-right-side {
  width: 70%;
  padding-left: 20px;
  /* Space between the logo and the text */
}

.IM-right-side h1 {
  font-family: 'Roboto', sans-serif;
  /* Modern font for the headline */
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin: 0;
  letter-spacing: 1px;
  text-transform: capitalize;
  /* For a more clean and modern look */
  margin-bottom: 10px;
  transition: color 0.3s ease;
  /* Smooth color change */
}

.IM-right-side h1:hover {
  color: #007BFF;
  /* Color change on hover for a modern touch */
}

.IM-right-side p {
  font-family: 'Open Sans', sans-serif;
  /* Clean font for paragraph */
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  color: #666;
  margin: 0;
  transition: color 0.3s ease;
}

.IM-right-side p:hover {
  color: #333;
  /* Darker color for the paragraph on hover */
}




/* General Styles */
.Z-disclaimer {
  background-color: #f4f4f4;
  padding: 20px;
  border-radius: 10px;
}

.Z-container {
  max-width: 1200px;
  margin: 0 auto;
}

.Z-heading {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}

.Z-subheading {
  font-size: 1.5rem;
  margin-top: 20px;
  color: #444;
}

.Z-paragraph {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 10px;
}

.Z-paragraph:last-of-type {
  margin-bottom: 0;
}






@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-column {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }

  .footer-nav li {
    list-style: none;
  }

  .footer-nav li::before {
    left: -10px;
    /* Adjust for smaller screens */

  }
}

@media (max-width: 480px) {
  .footer {
    padding: 20px;
  }

  .icon-circle {
    width: 30px;
    height: 30px;
    font-size: 1em;
  }

  .footer-nav li {
    font-size: 1em;
  }
}



/* Hide form by default for larger screens */
.IM-MObile-contact-form-container {
  display: none;
}

/* Show form only on mobile screens */
@media (max-width: 768px) {
  .IM-MObile-contact-form-container {
    display: block;
    background: #f8f9fa;
    color: #333;
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 400px;
    /* Limit width for mobile */
    margin: 20px auto;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  /* Hover effect for form container on mobile */
  .IM-MObile-contact-form-container:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  }

  /* Contact form title */
  .IM-MObile-contact-form-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
  }

  /* Contact form styling */
  .IM-MObile-contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  /* Form input fields */
  .IM-MObile-contact-form .IM-MObile-form-input {
    padding: 12px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f0f0f0;
    color: #333;
    transition: all 0.3s ease;
  }

  /* Focus state for form input fields */
  .IM-MObile-contact-form .IM-MObile-form-input:focus {
    border-color: #4d33f7;
    background-color: #ffffff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(77, 51, 247, 0.2);
  }

  /* Submit button */
  .IM-MObile-contact-form .IM-MObile-form-submit {
    padding: 12px;
    font-size: 1rem;
    background: linear-gradient(45deg, #4d33f7, #6f7cff);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
  }

  /* Hover effect for submit button */
  .IM-MObile-contact-form .IM-MObile-form-submit:hover {
    background: linear-gradient(45deg, #514eef, #f37055);
    transform: translateY(-2px);
    /* Slight lift effect */
  }
}






/* Basic modal styles */
.IM-MODEL-modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.IM-MODEL-modal-content {
  display: flex;
  flex-direction: row;
  background-color: white;
  width: 80%;
  max-width: 700px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: relative;
}
@media (max-width: 768px) {
  .IM-MODEL-modal-content {
    flex-direction: column;
  }
}

.IM-MODEL-close {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #aaa;
  font-size: 24px;
  cursor: pointer;
}

.IM-MODEL-close:hover {
  color: black;
}

/* Left side with text */
.IM-MODEL-modal-left {
  flex: 1;
  padding: 30px;
  background-color: #f8f9fa;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.IM-MODEL-modal-left h2 {
  font-size: 24px;
  color: #333;
  margin-bottom: 15px;
}

.IM-MODEL-modal-left ul {
  list-style-type: none;
  padding: 0;
}

.IM-MODEL-modal-left li {
  margin: 8px 0;
  color: #555;
}

/* Right side with form */
.IM-MODEL-modal-right {
  flex: 1;
  padding: 30px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.IM-MODEL-modal-right input[type="text"],
.IM-MODEL-modal-right input[type="tel"],
.IM-MODEL-modal-right input[type="email"] {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.IM-MODEL-modal-right input[type="text"]:focus,
.IM-MODEL-modal-right input[type="tel"]:focus,
.IM-MODEL-modal-right input[type="email"]:focus {
  border-color: #007bff;
  box-shadow: 0 0 8px rgba(0, 123, 255, 0.2);
  outline: none;
}

.IM-MODEL-modal-right button {
  padding: 12px 15px;
  font-size: 18px;
  font-weight: bold;
  color: white;
  background-color: #007bff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.IM-MODEL-modal-right button:hover {
  background-color: #0056b3;
}




#main-h3 {
  margin-left: 5rem;
}

.social-icons-e {
  display: flex;
  justify-content: center;
  align-items: center;

  gap: 20px;
  /* Space between icons */
  margin: 20px 20px;
  /* Margin around the icon container */
}

/* Style for each social icon */
.social-icon {
  display: inline-block;
  background-color: #fff;
  border-radius: 50%;

  padding: 10px;
  width: 50px;
  height: 50px;
  color: #333;
  /* Default icon color */
  text-align: center;
  font-size: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* Light shadow for depth */
}

/* Hover effect */
.social-icon:hover {
  background-color: #0073e6;
  /* Blue background for Facebook */
  color: #fff;
  /* White icon on hover */
  transform: translateY(-5px);
  /* Slight lift on hover */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  /* Stronger shadow on hover */
}

/* Specific color for each icon */
.social-icon:nth-child(1):hover {
  background-color: #3b5998;
  /* Facebook color */
}

.social-icon:nth-child(2):hover {
  background-color: #1da1f2;
  /* Twitter color */
}

.social-icon:nth-child(3):hover {
  background-color: #e4405f;
  /* Instagram color */
}




/* Optional: Responsive design */
@media (max-width: 800px) {
  .social-icons-e {
    gap: 15px;
  }

  #main-h3 {
    margin-left: 0;
  }

  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}



@media (max-width: 768px) {
  .main-content {
    width: 100% !important;
    max-width:100%!important;
  }

  html,body{
    overflow-x: hidden !important;
  }


  .sticky-form {
    display: none !important;
    width: 0% !important;
  }

  .container{
    display: flex;
    flex-direction: column !important;
    width: 100% !important;

  }
}


@media (max-width: 768px) {
  .IM-MODEL-modal-content {
    flex-direction: column;
    gap: 0; 
  }
  
  .IM-MODEL-modal-left{
      padding-bottom:10px;
     
  }
  

}

@media (max-width: 768px) {
    .IM-MODEL-modal-right {
        margin-top: -1rem;
    }
}


@media (max-width: 768px) {
    .IM-MODEL-modal-right {
        margin-top: -1.5rem !important; 
    }
}




.IM-5-stat-item {
  background: rgba(0,123,255,0.5);

}