/* Global Styles */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background-color: #001f54;
  }
  
  .navbar {
    background: rgba(0, 0, 128, 0.9);
    transition: all 0.3s;
  }
  
  .navbar.scrolled {
    background: #001f54;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .hero-section {
    background-image: url('hero.jpg');
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(230, 233, 221);
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8);
  }
  
  .hero-section h1 {
    font-size: 3.5rem;
    font-weight: bold;
  }
  
  .hero-section p {
    font-size: 1.25rem;
  }
  
  .section-a .card {
    border: #222;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  }
  
  .section-a .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  
  .cta-section {
    background: linear-gradient(to right, #007bff, #6f42c1);
    color: white;
    text-align: center;
    padding: 60px 20px;
  }
  
  .cta-section h2 {
    font-size: 2.5rem;
  }
  
  .footer {
    background: #222;
    color: #bbb;
    padding: 20px 0;
  }
  
  .footer a {
    color: #bbb;
    text-decoration: none;
  }
  
  .footer a:hover {
    color: white;
    text-decoration: underline;
  }
  
  .why-choose-ib .icon-box {
    transition: transform 0.3s ease;
  }
  
  .why-choose-ib .icon-box:hover {
    transform: scale(1.1);
  }
  
  .uvais {
     color: aliceblue;
  }
  
  
  
  
  .accordion-button {
    border-radius: 5px;
    display: flex;
    align-items: center;
    font-weight: 600;
    padding: 30px;
    font-size: x-large;
    text-align: left;
  }
  
  .accordion-button::after {
    order: -1;
    /* Moves control symbol to the left */
    margin-right: 15px;
    /* Space between control symbol and text */
    color: #000;
    /* Black color for the control symbol */
    background-color: #fff;
    /* White background for the circular control symbol */
    border-radius: 50%;
    /* Makes the background circular */
    padding: 10px;
    /* Adds space around the control symbol */
    font-size: 0.8em;
    /* Adjusts the size of the control symbol */
    border: 1px solid #000;
    /* Adds a border around the background */
  }
  
  .accordion-button .left-content {
    flex-grow: 1;
    /* Pushes icons to the right */
    display: flex;
    align-items: center;
    font-size: larger;
  }
  
  .accordion-button .icon-group {
    margin-left: auto;
    /* Aligns icons to the right */
    display: flex;
    gap: 5px;
    /* Adds space between icons */
  }
  
  .accordion-button .icon-group i {
    color: #11121a;
    border: 2px solid #1f1d76;
    /* Square border around each icon */
    padding: 10px;
    border-radius: 5px;
    font-size: 1.2em;
    /* Adjust icon size */
  }
  
  .accordion-item.math .accordion-button {
    background-color: #9ca5e4;
    color: #fff;
  }
  
  .accordion-item.science .accordion-button {
    background-color: #f4cccc;
    color: #38761d;
  }
  
  .accordion-item.human-science .accordion-button {
    background-color: #c9daf8;
    color: #1155cc;
  }
  
  .accordion-item.language .accordion-button {
    background-color: #d9ead3;
    color: #351c75;
  }
  
  .accordion-body {
    background-color: #4d4b50;
    color: #fff;
  }
  
  .section-b .card {
    border-radius: 10px;
    padding: 15px;
    margin: 10px;
    color: #fff;
    display: flex;
    /* Ensure flexbox layout */
    justify-content: space-between;
    /* Aligns text to left and icon to right */
    font-size: 1.1em;
  }
  
  .section-b .card-icon {
    font-size: 1.5em;
    /* Adjust icon size */
    margin-left: auto;
    /* Ensures the icon is on the right */
    margin-right: 0;
    /* Ensures no margin on the right */
  }
  
  .math-card {
    background-color: #5f7aaf;
  }
  
  .science-card {
    background-color: #f08080;
  }
  
  .human-science-card {
    background-color: #80b3ff;
  }
  
  .language-card {
    background-color: #92c47d;
  }