body,
ul,
li,
h2,
p {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
}

.spacer-2{
    display: block;
    height: 10px;
}
.header-section {
    background-color: red;
    padding: 30px;
    color: white;
    text-align: center;
    height: 30%;
}

.container {
    margin-top: 30px;
    padding: 60px;
}
/* Tabs Container */
.nav-tabs {
    display: flex;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 10px;
    list-style: none;
    justify-content: center;
    
}

.nav-tabs li {
    margin-right: 20px;
    transition: all 0.9s ease-in-out;
}

.nav-tabs a {
    text-decoration: none;
    padding: 15px 3px;
    color: #8d97ad; /* Light grey text color for inactive tabs */
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    transition: text 0.5s ease;
    
}

.nav-tabs a:hover {
    color: #0056b3; /* Hover color */
}

.nav-tabs a.active {
    color: #1b1f33; /* Dark color for active tab */
    position: relative;
    font-weight: bold;
}

.nav-tabs a.active::after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background-color: #003366; /* Orange underline */
    position: absolute;
    bottom: -2px;
    left: 0;
}



/* Tab content styling */
.tab-content {
    display: flex;
    padding: 20px;
    background-color: white;
    justify-content: center;
    width: 100%;
}

.tab-item {
    display: none;
    flex-direction: row;
    justify-content: center;
}
.tab-item .tab-text{
    background-color: #e7f0f9;
    /* display: flex; */
    flex-direction: column;
    justify-content: center;
    padding: 10px;
}
.tab-item .tab-text h2{
    margin: 10px auto;
}

.tab-item .tab-text p{
    margin: 0 10pxs;
}
.tab-item .tab-item-content{
    display: flex;
    justify-content: center;
}

.tab-item.active {
    display: flex;
}

.tab-text {

    width: 60%;
    height: 320px;
}
.tab-imag{
    width: 40%; 
    height: 320px;
}

.tab-image img {
    width: 100%;
    height: 320px;
}

.dr{
    display: flex;
    justify-content: center;
    /* align-items: center; */
}
.progress-section{
    display: flex;
    justify-content: start;
    overflow: hidden;
    width: 100%;
}
.progress-section .progress-image{
    width: 50%;
    
    overflow: hidden;
}
.progress-section .progress-image img{
width: 100%;
height: auto;
}
.progress-section .progress-container{
    width: 50%;
    background-color: #242424;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: xx-large;
}

.progress-section .progress-container h1 span{
    color: #28b4c2;
}



.footer {
    background-color: #292b39;
    color: rgba(255, 255, 255, 0.744);
    padding-top: 80px;
    display: block;
    bottom: 20px;
    right: 20px;
}

.whatsapp-link {
    font-size: 40px;
    color: green;
    text-decoration: none;
}


.bar {
    width: 100%;
    padding: 0px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-content: space-between;
    background: #000 !important;
  }

  /*.navbar-nav{*/
  /*  padding: 20px;*/
  /*}*/
  .collapse {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-content: space-between;

  }

  .nav-item a {
    text-align: center;
    justify-content: center;
    height: 50px;
    color: #fff !important;
  }

  .nav-item a:hover {
    background: #fff;
    color: #000 !important;
  }

  .collapse ul {
    list-style: none;
    list-style-type: none;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-content: space-around;
    margin-bottom: 0px !important;
    background: #000;
    margin-bottom: 0px !important;
  }
  .collapse li{
    position: relative;
    
  }
  .collapse li:hover{
    background-color: #fff;
  }
  .collapse ul li a{
    text-decoration: none;

  }

  .icon {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-content: space-evenly;
  }

  .con {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }


/* media querries */
/* for laptop 1024px */
@media screen and (max-width: 1124px){
    body {
        font-size: 14px;
    }
    .header-section{
        background-color: red;
    }   
}


@media screen and (max-width: 768px){
 


.container {
    margin-top: 30px;
    padding: 20px;
}
/* Tabs Container */
.nav-tabs {
    display: flex;
    border-bottom: 1px solid #e5e5e5;
  row-gap: 20px;
    list-style: none;
    justify-content: center;
    flex-direction: column;
}

.nav-tabs li {
    margin-right: 20px;
    transition: all 0.9s ease-in-out;
}

.nav-tabs a {
    text-decoration: none;
    padding: 5px 4px;
    color: #8d97ad; /* Light grey text color for inactive tabs */
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    transition: text 0.5s ease;
}

.nav-tabs a:hover {
    color: #0056b3; /* Hover color */
}

.nav-tabs a.active {
    color: #1b1f33; /* Dark color for active tab */
    position: relative;
    font-weight: bold;
}

.nav-tabs a.active::after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background-color: #003366; /* Orange underline */
    position: absolute;
    bottom: -2px;
    left: 0;
}



/* Tab content styling */
.tab-content {
    padding: 20px;
    background-color: white;
}

.tab-item {
    display: none;
    flex-direction: row;
    justify-content: center;
}
.tab-item .tab-text{
    background-color: #e7f0f9;
    /* display: flex; */
    flex-direction: column;
    justify-content: center;
   height: 100%;
    width: 100%;
}
.tab-item .tab-text h2{
    margin: 10px auto;
}

.tab-item .tab-text p{
    margin: 0 10pxs;
}
.tab-item .tab-item-content{
    display: flex;
    justify-content: center;
}

.tab-item.active {
    display: flex;
}

.tab-text {

    width: 40%;
}

.tab-image img {
    width: 100%;
    height: auto;
}
.dr{
    display: flex;
    flex-direction: column-reverse;
}



}
@media screen and (max-width : 425px){
    .icon {
  display: none;
  }
  }

  @media screen and (min-width : 769px){
    .tab-content {
        padding: 20px;
        background-color: white;
        height: auto;
    }
    
    .tab-item .tab-text{
        background-color: #e7f0f9;
        /* display: flex; */
        flex-direction: column;
        justify-content: center;
       height: 100%;
        width: 100%;
    }
    .container {
        margin-top: 30px;
        padding: 0px;
    }
    .tab-imag{
       
    }
    
    .tab-image img {
        width: 450px;
        height: 100%;
       
    }
    }
  


