
.temp {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px;
    background-color: #002754;
}
.textarea {
    flex: 1 1 100%;
    padding: 20px;
    color: white;
    text-align: center;
    max-width: 600px; /* Restrict max width */
}
.haddingarea h3 {
  color: white;
    margin: 0;
    font-size: 2rem;
    line-height: 1.5;
    text-transform: uppercase;
}
.haddingarea p {
    font-size: 1rem;
    color: #ccc;
}
.buttonarea {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.buttonarea button {
    padding: 10px 20px;
    font-size: 1rem;
    color: white;
    background-color: #d6a811;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.buttonarea button:hover {
    background-color: #f0c53a;
}
.imgarea {
    flex: 1 1 100%;
    padding: 20px;
    text-align: center;
    max-width: 600px;
}
.imgarea img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */
}

/* Responsive Adjustments */
@media (min-width: 600px) {
    .textarea, .imgarea {
        flex: 1 1 48%; /* Side by side on medium screens */
        text-align: left; /* Align text to left */
    }
    .haddingarea h3 {
        font-size: 2.5rem; /* Larger text for bigger screens */
    }
    .buttonarea {
        justify-content: flex-start;
    }
}
@media (min-width: 1024px) {
    .temp {
        padding: 40px; /* Add spacing for larger screens */
    }
    .haddingarea h3 {
        font-size: 3rem; /* Bigger headings for desktops */
    }
    .textarea, .imgarea {
        max-width: 45%; /* Slightly smaller for aesthetics */
    }
    .buttonarea button {
        font-size: 1.2rem; /* Enhance button text size */
        padding: 12px 24px; /* Bigger buttons */
    }
}

  h1 {
    font-size: 3rem;
    color: #002147;
    margin-bottom: 10px;
  }
  h3 {
    font-size: 1.2rem;
    color: #000000;
    margin-bottom: 10px;
  }
  h2 {
    font-size: 1.2rem;
    color:#002147;
    margin-bottom: 10px;
  }
  p {
    font-size: 1rem;
    color: black;
  }

  /* Layout Container */
  .contgrid{
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }

  /* Header Section */
  .head {
    text-align: center;
    margin-bottom: 20px;
  }

  /* Grid Section */
  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }

  /* Grid Item Styles */
  .grid-item {
    /* background: whitesmoke; */
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  .grid :hover {
      background-color: #f0c53a;
  }
  .grid-item img {
    max-width: 60px;
    margin-bottom: 15px;
  }
  .grid-item h3 {
    margin-bottom: 10px;
  }
  .grid-item h2{ 
    font-size: 20px;
    font-weight: bold;
    /* font-family: 'Roboto', sans-serif; */
  }
  .grid-item p {
    font-size: 0.9rem;
    color: #000000;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    h1 {
      font-size: 1.8rem;
    }
    .grid-item p {
      font-size: 0.85rem;
    }
  }
  @media (max-width: 480px) {
    h1 {
      font-size: 1.5rem;
    }
    .grid-item {
      padding: 15px;
    }
    .grid-item img {
      max-width: 50px;
    }
  }




  .hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    background-color: #fef8e8;
    padding: 20px;
    border-radius: 10px;
}

.hero-content {
    flex: 1;
}

.hero .badge {
    background-color: #f1f1f1;
    color: #000;
    padding: 5px 10px;
    font-size: 0.8rem;
    border-radius: 5px;
    border: none;
    margin-bottom: 10px;
    
}

.hero h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: black;
    text-align: center;
}

.hero h1 span {
    color: #ffcc00;
    font-weight: bold;
    text-align: center;
}

.hero p {
    margin-bottom: 15px;
    text-align: center;
}

.hero .btn-primary {
    text-decoration: none;
    background-color: #0056b3;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;

    transition: background-color 0.3s ease;
}

.hero .btn-primary:hover {
    background-color: #003d80;
}

.hero-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
}

/* Figures Section */
.figures {
    margin-top: 30px;
    text-align: center;
}

.figures h2 {
    font-size: 1.8rem;
    color: #0056b3;
    margin-bottom: 10px;
}

.figures p {
    margin-bottom: 20px;
    color: #666;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.stat-item {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.stat-item h3 {
    color: #0056b3;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.stat-item p {
    color: #666;
}

.figures-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero .btn-primary {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}


.grid-item:nth-child(1) i {
  color:red;
  /* IT: Blue */
}

.grid-item:nth-child(2) i {
  color: blue;
  /* Education: Green */
}

.grid-item:nth-child(3) i {
  color:yellow;
  /* Accounting: Yellow */
}

.grid-item:nth-child(4) i {
  color:rgb(0, 90, 179);
  /* Engineering: Red */
}

.grid-item:nth-child(5) i {
  color: rgb(127, 82, 4);
  /* Research: Purple */
}

.grid-item:nth-child(6) i {
  color: red;
  /* HR: Teal */
}

.grid-item:nth-child(7) i {
  color: green;
  /* Administrative: Orange */
}

.grid-item:nth-child(8) i {
  color:black;
  /* Clinical: Pink */
}

.grid-item:nth-child(9) i {
  color:rgb(232, 147, 62);
  /* Clinical: Pink */
}

.grid-item:nth-child(10) i {
  color:rgb(14, 0, 137);
  /* Clinical: Pink */
}
.grid-item:nth-child(11) i {
  color:green;
  /* Clinical: Pink */
}
.grid-item:nth-child(12) i {
  color:blue;
  /* Clinical: Pink */
}
.grid-item:nth-child(13) i {
  color:rgb(225, 118, 47);
  /* Clinical: Pink */
}
.grid-item:nth-child(14) i {
  color:black;
  /* Clinical: Pink */
}
.grid-item:nth-child(15) i {
  color:blue;
  /* Clinical: Pink */
}
