.video-section {
    background-color: #f9f9f9;
    padding: 20px;
    max-width: 700px;
    margin: 40px auto;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.my-video {
    width: 100%;
    height: auto;
    border-radius: 8px;
}
/* === Calculator Cards Section === */
.calculator-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.calculator-section .section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 40px;
  color: #000;
}

/* Card Common Styles */
.calculator-card {
  background: #fff;
  border-radius: 10px;
  padding: 30px 20px;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #000;
}

/* Icon Styling */
.calculator-card .icon {
  font-size: 36px;
  margin-bottom: 20px;
  transition: color 0.4s ease;
}

.calculator-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 30px;
}

/* Button */
.calculate-btn {
  border: 1px solid #ccc;
  padding: 10px 20px;
  border-radius: 30px;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  transition: 0.3s ease;
}

.calculate-btn i {
  margin-left: 8px;
}

.calculate-btn:hover {
  border-color: #000;
}

/* See All link */
.see-all {
  margin-top: 30px;
}

.see-all a {
  color: #333;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.3s;
}

.see-all a:hover {
  color: #28a745;
}

/* === UNIQUE HOVER COLORS FOR EACH CARD === */
.col-md-4:nth-child(1) .calculator-card:hover {
  background-color: #e1f7d5; /* Light green */
  color: #2e7d32;
}
.col-md-4:nth-child(1) .calculator-card:hover .icon {
  color: #2e7d32;
}
.col-md-4:nth-child(1) .calculator-card:hover .calculate-btn {
  color: #2e7d32;
  border-color: #2e7d32;
}

.col-md-4:nth-child(2) .calculator-card:hover {
  background-color: #d0f0fd; /* Light blue */
  color: #1565c0;
}
.col-md-4:nth-child(2) .calculator-card:hover .icon {
  color: #1565c0;
}
.col-md-4:nth-child(2) .calculator-card:hover .calculate-btn {
  color: #1565c0;
  border-color: #1565c0;
}

.col-md-4:nth-child(3) .calculator-card:hover {
  background-color: #ffe0ec; /* Light pink */
  color: #c2185b;
}
.col-md-4:nth-child(3) .calculator-card:hover .icon {
  color: #c2185b;
}
.col-md-4:nth-child(3) .calculator-card:hover .calculate-btn {
  color: #c2185b;
  border-color: #c2185b;
}

/*card upar */

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f5f7fa;
}

.section-instruments {
  /*background: white;*/
  text-align: center;
  padding-bottom: 50px;
}

.instrument-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 40px 0;
}

.instrument-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-bottom: 40px;
}

.instrument-card {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  border-radius: 10px;
  width: 220px;
  padding: 30px 20px;
  margin: 15px;
  transition: transform 0.3s ease;
}

.instrument-card:hover {
  transform: translateY(-5px);
}

.instrument-icon {
  font-size: 40px;
  color: #5a5aff;
  margin-bottom: 15px;
}

.instrument-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.instrument-info h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.instrument-info h2 span {
  color: #0056ff;
}

.instrument-info p {
  max-width: 800px;
  margin: 10px auto;
  font-size: 16px;
  color: #333;
}

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

  .instrument-info h2 {
    font-size: 26px;
  }

  .instrument-info p {
    font-size: 14px;
    padding: 0 10px;
  }
}


/* Slider Section */
.hero-slider {
  position: relative;
  width: 100%;
  height: 400px; /* Adjust as needed */
  background-color: #000;
  overflow: hidden;
}

.hero-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Cards Section with Overlap */
.instrument-overlap {
  position: relative;
  margin-top: -100px; /* Pull it up */
  z-index: 2;
  display: flex;
  justify-content: center;
  padding-bottom: 40px;
}

.instrument-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  /*background: white;*/
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  max-width: 1100px;
  gap: 20px;
}

/* Individual Card */
.instrument-card {
  /*background: #fff;*/
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
  width: 200px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.instrument-card:hover {
  transform: translateY(-5px);
}

.instrument-icon {
  font-size: 36px;
  color: #4a4aff;
  margin-bottom: 15px;
}

.instrument-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

/*marketing*/
/* ===== Marketing Section Styles ===== */

.marketing-section {
  background-color: #f0f0f0;
  padding: 60px 20px;
}

.marketing-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}

.marketing-content {
  flex: 1 1 400px;
  max-width: 500px;
}

.marketing-content h2 {
  font-size: 28px;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.marketing-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 15px;
}

.marketing-btn {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 10px 25px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  margin-top: 15px;
}

/* Services Grid */
.marketing-services-grid {
  flex: 1 1 600px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.service-card {
  padding: 20px;
  border-radius: 6px;
  color: white;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

/* Icon inside card */
.service-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}

.service-card i {
  margin-right: 8px;
}

/* Color Classes */
.blue {
  background-color: #00bfff;
}

.green {
  background-color: #228b22;
}

.yellow {
  background-color: #ffb400;
  color: #1a1a1a;
}

.red {
  background-color: #d32f2f;
}

.cyan {
  background-color: #00c3ff;
}

.gray {
  background-color: #888;
}

