
.timeline_area {
    position: relative;
    z-index: 1;
}
.single-timeline-area {
    position: relative;
    z-index: 1;
    padding-left: 180px;
}
@media only screen and (max-width: 575px) {
    .single-timeline-area {
        padding-left: 100px;
    }
}
.single-timeline-area .timeline-date {
    position: absolute;
    width: 180px;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding-right: 60px;
}
@media only screen and (max-width: 575px) {
    .single-timeline-area .timeline-date {
        width: 100px;
    }
}
.single-timeline-area .timeline-date::after {
    position: absolute;
    width: 3px;
    height: 100%;
    content: "";
    background-color: #32e0ff;
    top: 0;
    right: 30px;
    z-index: 1;
}
.single-timeline-area .timeline-date::before {
    position: absolute;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background-color: #123897;
    content: "";
    top: 50%;
    right: 26px;
    z-index: 5;
    margin-top: -5.5px;
}
.single-timeline-area .timeline-date p {
    margin-bottom: 0;
    color: #020710;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
}
.single-timeline-area .single-timeline-content {
    position: relative;
    z-index: 1;
    padding: 30px 30px 25px;
    border-radius: 6px;
    margin-bottom: 15px;
    margin-top: 15px;
    -webkit-box-shadow: 0 0.25rem 1rem 0 rgba(47, 91, 234, 0.125);
    box-shadow: 0 0.25rem 1rem 0 rgba(47, 91, 234, 0.125);
    border: 1px solid #32e0ff;
}
@media only screen and (max-width: 575px) {
    .single-timeline-area .single-timeline-content {
        padding: 20px;
    }
}
.single-timeline-area .single-timeline-content .timeline-icon {
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    width: 30px;
    height: 30px;
    background-color: #123897;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 30px;
    flex: 0 0 30px;
    text-align: center;
    max-width: 30px;
    border-radius: 50%;
    margin-right: 15px;
}
.single-timeline-area .single-timeline-content .timeline-icon i {
    color: #ffffff;
    line-height: 30px;
}
.single-timeline-area .single-timeline-content .timeline-text h6 {
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    font-size:medium;
}
.single-timeline-area .single-timeline-content .timeline-text p {
    font-size: 13px;
    margin-bottom: 0;
}
.single-timeline-area .single-timeline-content:hover .timeline-icon,
.single-timeline-area .single-timeline-content:focus .timeline-icon {
    background-color: #020710;
}
.single-timeline-area .single-timeline-content:hover .timeline-text h6,
.single-timeline-area .single-timeline-content:focus .timeline-text h6 {
    color: #3f43fd;
}

@media (max-width: 768px) {
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0 10px; /* Small padding to avoid touching screen edges */
    }

    .row.justify-content-center {
        display: flex;
        flex-wrap: nowrap; /* Prevents wrapping */
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .col-12.col-md-auto {
        flex: 1; /* Each element takes equal space */
        min-width: 30%; /* Ensures proper spacing */
    }

    select.form-control,
    button.btn {
        width: 100%; /* Full width */
        font-size: 12px; /* Comfortable size */
        padding: 10px;
        /* Proper spacing */
    }
}


@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root{ --main-color: #CB4D27; }
body{ background-color: #eee; }
h1{ padding: 0 0 30px; }
.serviceBox{
    color: var(--main-color);
    font-family:'Poppins', sans-serif;
    text-align: center;
    padding: 10px 15px 30px;
    position: relative;
    z-index: 1;
}
.serviceBox:before,
.serviceBox:after{
    content: "";
    background: linear-gradient(to left bottom,#eee,#fff,#fff);
    border-radius: 15px;
    position: absolute;
    top: 45px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    box-shadow: 0 5px 8px rgba(0,0,0,0.3);
    z-index: -1;
}
.serviceBox:after{
    background: var(--main-color);
    width: 50%;
    height: 50%;
    border-radius: 0 0 20px 0;
    box-shadow: none;
    top: auto;
    left: auto;
    bottom: 0;
    right: 0;
    z-index: -2;
}
.serviceBox .service-icon{
    color: var(--main-color);
    background: #fff;
    font-size: 40px;
    line-height: 70px;
    width: 70px;
    height: 70px;
    margin: 0 0 30px;
    border-radius: 50px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.3),0 0 0 8px var(--main-color);
}
.serviceBox .service-icon i{ line-height:inherit; }
.serviceBox .title{
    font-size: 19px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0 10px 10px;
}
.serviceBox .description{
    color: #123897;
    font-size: 12px;
    line-height: 18px;
    justify-content:center;
    
    margin: 0 15px;
}
.serviceBox.golden{ --main-color: #D49530; }
.serviceBox.green{ --main-color: #8BC904; }
.serviceBox.dark-green{ --main-color: #02917E; }
@media only screen and (max-width: 1199px){
    .serviceBox{ margin: 0 0 30px; }
}
@media only screen and (max-width: 767px) {
    .container.align-self-center {
       
    }
}

.exam-card {
    text-align: center;
    padding: 10px;
    border-radius: 10px;
    background-color: #1890a8;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    
}

@media (max-width: 768px) { 
    .faq-container {
        display: flex;
        flex-direction: column;
    }

    .faq-left {
        order: 2; /* Moves text content above */
    }

    .faq-right {
        order: 1; /* Moves accordion above */
    }

    .faq-read-more {
        order: 3; /* Moves "Read More" button to the bottom */
        margin-top: 20px; /* Adds space above */
        text-align: center; /* Centers the button */
        display: block; 
    }
}

h1, h2, h3, h4, h5, h6 {
}
section {
    padding: 40px 0;
    min-height: 100vh;
}
@media screen and (max-width:724px) {
  section {
    padding: 40px 0;
    min-height:76vh;
}
}
a, a:hover, a:focus, a:active {
    text-decoration:none;
    outline: none;
}
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}.bg-gray {
    background-color: #6379ae;
}

.site-heading h2 {
  display: block;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.site-heading h2 span {
  color: #123897;
}

.site-heading h4 {
  display: inline-block;
  padding-bottom: 60px;
  position: relative;
  text-transform: capitalize;
  z-index: 1;
}

.site-heading h4::before {
  background: #123897 none repeat scroll 0 0;
  bottom: 0;
  content: "";
  height: 2px;
  left: 50%;
  margin-left: -25px;
  position: absolute;
  width: 50px;
}

.site-heading {
  margin-bottom: 60px;
  overflow: hidden;
  margin-top: -5px;
}


.features-items,
.features-items .items-box {
  overflow: hidden;
}

.features-area .equal-height::after {
  background: red none repeat scroll 0 0;
  content: "";
  height: 100%;
  position: absolute;
  right: -1px;
  top: 0;
  width: 1px;
}



.features-area .features-items .col-md-5, 
.features-area .features-items .col-md-7 {
  display: table-cell;
  float: none;
  vertical-align: middle;
}

.features-area .features-items.reversed .col-md-5, 
.features-area .features-items.reversed .col-md-7 {
  display: inline-block;
  float: left;
}

.features-area .features-items.reversed .info-box {
  float: right;
}

.features-area .features-items .item {
  padding: 15px 30px;
}

.features-area.item-full .features-items .item {
  padding: 30px;
}

.features-area .features-items .item h4 {
  position: relative;
}

.features-area.bottom-small {
  padding-bottom: 25px;
}

.features-area.default-padding.bottom-none {
  padding-bottom: 30px;
}

.features-area .item .icon {
  margin-bottom: 20px;
}

.features-area .item .info {
}

.features-area .item .icon i {
  background: #123897 none repeat scroll 0 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-box-shadow: 0 0 10px #cccccc;
  -webkit-box-shadow: 0 0 10px #cccccc;
  -o-box-shadow: 0 0 10px #cccccc;
  box-shadow: 0 0 10px #cccccc;
  color: #ffff;
  display: inline-block;
  font-size: 30px;
  height: 100px;
  line-height: 100px;
  position: relative;
  text-align: center;
  width: 100px;
  z-index: 1;
}

.features-area .features-items .items-box i {
  background: transparent;
}

.features-area .item .icon {
  margin-bottom: 25px;
}

.features-area .features-items.icon-solid i {
  border-radius: inherit;
  -moz-box-shadow: 0 0 10px #cccccc;
  -webkit-box-shadow: 0 0 10px #cccccc;
  -o-box-shadow: 0 0 10px #cccccc;
  box-shadow: 0 0 10px #cccccc;
  color: #ffaf5a;
  display: inline-block;
  font-size: 50px;
  height: 80px;
  line-height: 80px;
  position: relative;
  text-align: center;
  width: 80px;
}


.features-area .item .info h4 {
    font-weight: 600;
    text-transform: capitalize;
    font-size: 20px;
}
.features-area .item .info p {
  margin: 0;
}

.features-area .features-items.less-icon .items-box.inc-cell .item .info {
  padding-left: 0;
}

.features-area .features-items .items-box.inc-cell .item .info a {
  color: #666666;
  display: inline-block;
  margin-top: 15px;
  text-transform: uppercase;
}

.features-area .features-items .items-box.inc-cell .item .info a:hover {
  color: #ffaf5a;
}

.ksdesc{
  display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(2, 1fr);

}
@media screen and (max-width:724px){
  .ksdesc{
    display: grid; grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(2, 1fr);
  
  }
  .d-flex{
    flex-direction: column;
  }
}

 /* Header Styling */
 .header-style {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Ensures proper spacing */
    background-color: #123897;
    padding: 10px 80px; /* Adds space from left & right */
    color: white;
    flex-wrap: nowrap; /* Prevents stacking */
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.header-item {
    display: flex;
    align-items: center;
    gap: 7px;
}

.header-item a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.header-item i {
    font-size: 16px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .header-style {
        padding: 10px 20px; /* Reduce padding for mobile */
    }

    .header-content {
        display: flex;
        flex-direction: row; /* Keep it horizontal */
        justify-content: space-between;
        width: 100%;
    }
}