.main-div{
    width: 100%;
}
.title{
    width: 100%;
    text-align: center;
    margin-top: 50px;
    color: white;
}
.content{
    width: 80%;
    margin: 50px auto;
    text-align: center;
    font-size: 20px;
    color: white;
}

.tool-section {
  background: linear-gradient(to bottom right, #4831D4, #684af2);
  padding: 40px 20px;
}

.tool-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

.tool-card {
  height: 200px;
  background: white;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.tool-card:hover {
  transform: translateY(-5px);
}

.tool-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.tool-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #333;
}

.tool-card p {
  font-size: 14px;
  color: #666;
}

.solution-sec{
    background-color: #1D1646;
    width: 100%;
    color: white;
    text-align: center;
    padding: 30px;
    margin-top: 50px;
}
.solution-div{
    display: flex;
    justify-content: space-evenly;
    text-align: start;
    color: white;
    margin-top: 50px;
}
.one{
    width: 250px;
}
.one span{
    color: #F6D44C;
}

.two{
    width: 100%;
    margin: 50px auto;
    text-align: center;
    color: white;
}
.two h1{
    font-size: 35px;
}
.two p{
    font-size: 20px;
    width: 70%;
    margin: auto;
}
.two img{
    width: 500px;
    margin-top: 30px; 
}


.premium-section {
  background-color: #1D1646;
  padding: 40px 20px;
  color: white;
}

.premium-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.premium-left {
  flex: 1;
  min-width: 300px;
}

.premium-left h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.premium-left p {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.premium-button {
  background-color: #ffdd47;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 6px;
  display: inline-block;
  margin-top: 20px;
}

.premium-right {
  flex: 1;
  text-align: center;
  min-width: 250px;
}

.premium-right img {
  max-width: 50%;
  height: auto;
}




/* Responsive styles */
@media screen and (max-width: 768px) {
  .premium-container {
    flex-direction: column;
    text-align: center;
  }

  .premium-left, .premium-right {
    width: 100%;
  }

  .premium-left h2 {
    font-size: 20px;
  }

  .premium-left p {
    font-size: 15px;
  }

  .premium-button {
    font-size: 14px;
  }
}


/* Responsive grid for key breakpoints */
@media screen and (max-width: 1024px) {
  .tool-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .tool-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 426px) {
  .tool-container {
    grid-template-columns: 1fr;
  }
  .two img{
    width: 300px;
    margin-top: 30px; 
}
}