@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}



html {
    scroll-behavior: smooth;
  }

body {
    background-color: #f5f5f5;
    font-family: "Roboto", sans-serif;
    text-decoration: none;
    color: #333;

}























header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    padding: 0.5% 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}

header .logo {
    width: 150px;
}

header .logoShrink {
    width: 150px;
    display:none;
}

header ul,
header .navbar ul {
    list-style: none;
}

header ul li,
header .navbar ul li {
    position: relative;
    float: left;
}

header ul li a,
header .navbar ul li a {
    font-size: 20px;
    padding: 10px 20px;
    color: #333;
    display: block;
    text-decoration: none;
}

header ul li a:hover,
header .navbar ul li a:hover {
    background: #aaa;
    color: #fff;
    transition: all 0.3s ease;
}

header .navbar ul li ul {
    position: absolute;
    left: 0;
    width: 200px;
    background: #fff;
    display: none;
}

header .navbar ul li ul li {
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

header .navbar ul li ul li ul {
    left: 100%;
    top: 0;
}

header .navbar ul li:focus-within > ul,
header .navbar ul li:hover > ul {
    display: block;
    transition: all 5s ease;
}

#menu-bar {
    display: none;
}

header label {
    font-size: 20px;
    color: #333;
    cursor: pointer;
    display: none;
}

header label .menu-icon {
    display: inline-block;
    width: 30px;
    height: 21px;
    position: relative;
}

header label .menu-icon div {
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}

header label .menu-icon div:nth-child(1) {
    top: 0;
}

header label .menu-icon div:nth-child(2) {
    top: 9px;
}

header label .menu-icon div:nth-child(3) {
    top: 18px;
}

#menu-bar:checked + label .menu-icon div:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

#menu-bar:checked + label .menu-icon div:nth-child(2) {
    opacity: 0;
}

#menu-bar:checked + label .menu-icon div:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

button {
    font-size: 18px;
    color: #fff;
    padding: 10px 40px;
    background-color: rgba(55, 125, 255, 1);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    list-style: none;
    text-decoration: none;
}

button:hover {
    background-color: rgba(18, 101, 255, 0.5);
}

.qms-dropdown {
    position: relative;
    display: block;
}

.qms-dropdown .dropdown {
    display: none;
    position: absolute;
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    min-width: 160px;
    z-index: 1;
}

.qms-dropdown .dropdown li {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.qms-dropdown .dropdown li a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.qms-dropdown .dropdown ul:hover {
    background: #aaa;
    color: #fff;
    transition: all 0.3s ease;
}

.qms-dropdown .dropdown li a:hover {
    background: #aaa;
    color: #fff;
    transition: all 0.3s ease;
}

.qms-dropdown:hover .dropdown {
    display: block;
}



@media (max-width: 991px) {


    header .navbar ul li {
        width: 100%;
    }

    header .navbar ul li ul {
        position: relative;
        width: 100%;
    }

    header .navbar ul li ul li {
        background: #eee;
    }

    header .navbar ul li ul li ul {
        width: 100%;
        left: 0;
    }

    #menu-bar:checked ~ .navbar {
        display: block;
    }

    header .navbar ul li:hover > ul {
        display: none;
    }

    header .navbar ul li:focus-within > ul {
        display: initial;
    }

  

    header .logoShrink {
        width: 150px;
        display:initial;
    }

    header .logo {
        display:none;
    }
}


































.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 4rem 15px 3rem;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.col-half {
    width: 50%;
    padding: 0 15px;
}

.text-cap {
    text-transform: uppercase;
    font-size: 0.875rem;
    color: #6c757d;
    font-weight: 500;
}

.display-4 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.btn {
    display: inline-block;
    font-size: 1rem;
    line-height: 1.5;
    padding: 0.5rem 2rem;
    border-radius: 50px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: rgba(13, 110, 253, .8);
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background-color: #0b5ed7;
}

.btn-link {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 400;
}

.btn-link:hover {
    color: #0a58ca;
}


.container .row .col-half a {
    text-decoration: none;
}

.carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 0.5rem;
    height: 300px; /* Adjust height as needed */
    z-index: 1;
 
}

.carousel img {
    width: 100%;
    height: 300px; /* Match the container height */
    object-fit: cover; /* Ensure the image covers the container */
    border-radius: 0.5rem;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease;
 
}

.carousel img.visible {
    opacity: 1;
}

.bg-soft-primary {
    background-color: rgba(13, 110, 253, 0.1);
    border-radius: 0.5rem;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    margin-top: 3rem;
    margin-right: -3rem;
    z-index: -1;
}



@media (max-width: 991px) {
  .container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 4rem 15px 3rem;
}

.row {
    display: block;
    align-items: center;
}

.col-half {
    width: 100%;
    padding: 0 15px;
}

.text-cap {
    text-transform: uppercase;
    font-size: 0.875rem;
    color: #6c757d;
    font-weight: 500;
}

.display-4 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 1.5rem;

}

.btn {
    display: inline-block;
    font-size: 1rem;
    line-height: 1.5;
    padding: 0.5rem 2rem;
    border-radius: 50px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: rgba(13, 110, 253, .8);
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background-color: #0b5ed7;
}

.btn-link {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 400;
}

.btn-link:hover {
    color: #0a58ca;
}


.container .row .col-half a {
    text-decoration: none;
}

.carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 0.5rem;
    height: 300px; /* Adjust height as needed */
    z-index: 1;
}

.carousel img {
    width: 100%;
    height: 300px; /* Match the container height */
    object-fit: cover; /* Ensure the image covers the container */
    border-radius: 0.5rem;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.carousel img.visible {
    opacity: 1;
}

.bg-soft-primary {
    background-color: rgba(13, 110, 253, 0.1);
    border-radius: 0.5rem;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    margin-top: 3rem;
    margin-right: -3rem;
    z-index: -1;
}
}
















































































.row-QP {
    display: flex;
      width: 100%;
      max-width: 1140px;
      margin: 0 auto;
      padding: 4rem 15px 3rem;
  }
  
  .row-QP p {
    color: rgba(90, 90, 90, 1) ;
  }
  
  .col-half-left-qp {
    background-color: rgba(13, 110, 253, 0.1);
    padding: 20px;
    border-radius: 15px;
    margin: 1%;
    width: 50%;
  }
  
  .col-half-right-qp {
    padding: 20px;
    border-radius: 15px;
    margin: 1%;
    width: 50%;
  }
  
  .vmc-row {
    display: flex;
  }
  
  .vmc-rowContent {
    width: 50%;
    margin: 2px;
    padding: 5px;
  }
  
  
  .vmc-Values{
    width: 50%;
    margin: 2px;
    padding: 5px;
  }


























































@media (max-width: 991px) {
    header {
        padding: 20px;
        position: relative;
    }

    header label {
        display: block;
    }

    header .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        display: none;
    }

    header .navbar ul li {
        width: 100%;
    }

    header .navbar ul li ul {
        position: relative;
        width: 100%;
    }

    header .navbar ul li ul li {
        background: #eee;
    }

    header .navbar ul li ul li ul {
        width: 100%;
        left: 0;
    }

    #menu-bar:checked ~ .navbar {
        display: block;
    }

    header .navbar ul li:hover > ul {
        display: none;
    }

    header .navbar ul li:focus-within > ul {
        display: initial;
    }


















    .row-QP {
        display: block;
      }
      
      .col-half-left-qp {
        width: 100%;
      }
      
      .col-half-right-qp {
        width: 100%;
      }
      
      .vmc-row {
        display: block;
      }
      
      .vmc-rowContent {
        width: 100%;
      }



}




















.opcds-container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 4rem 15px 3rem;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    
  }

  .opcds-container h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #1e73be;
    font-weight: 700;
  }


.opcds-container h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #1e73be;
    font-weight: 700;
  }

  .opcds-container p {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 1.2rem;
    color: #555;
  }

  .opcds-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch; /* Ensures all cards stretch to the same height */
  }

  .opcds-card {
    width: 24%;
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 5px;
    background-color: rgba(55, 125, 255, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Ensures content is spaced out evenly */
  }

  .opcds-card:hover {
    background-color: rgba(55, 125, 255, 0.3);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .opcds-card h3 {
    margin-bottom: 1rem;
    color: #1e73be;
    font-weight: 500;
  }

  .opcds-card p {
    color: #555;
    flex-grow: 1; /* Ensures the paragraph takes up available space */
  }

  @media (max-width: 768px) {
    .opcds-card {
      width: 48%;
    }
  }

  @media (max-width: 480px) {
    .opcds-card {
      width: 100%;
    }
  }













 
  
  .questForms-row{
    display: block;
margin: auto;

  }

  .questForms h2{
    text-align:center;
    padding: 20px;
  }
  
  .questForms-column {
    flex: 1;
    margin: 10px;
    padding: 15px;
    border: 1px solid #dedede;
    border-radius: 10px;
    text-align:center;
  }
  
  .questForms-column h3{
    padding: 10px;
  }
  
  .buttons-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: stretch;
  }
  
 
  .questForms a {
    padding: 10px 20px;
    margin: 5px;
    text-decoration: none;
    background-color: rgba(55, 125, 255, 0.7);
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
    width: 350px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
  }
  
  .questForms a:hover {
    background-color: rgba(55, 125, 255, 1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  
  @media (max-width: 991px) {
    .questForms-row{
    display: block;
  }
}



































  .main-footer {
    bottom: 0;
    left: 0;
    background-color: #262626;
    text-align: center;

    padding: 10px;


}
.main-footer img {
    max-height: 60px; /* adjust this value according to your logo size */
    width: auto;
}

.sub-footer {
    color: #aaa;
            background-color: #333;
            padding: 1px 1px;
            text-align: center;
}


