body {
    font-family: "Adamina", serif !important;
}

.custom-container{
    max-width: 1140px;
    width: 90%;
    margin: auto;
    font-family: "Adamina", serif !important;
}




/* nvabar section  */

.custom-nvabar{
    padding: 7px 0 !important;
}


.navbar-section {
    width: 100%;
    background: #fff;

}

.logo-text{
    color: #e74a0c !important;
    font-size: 25px!important;
    font-weight: 500!important;
    /* transition: all 0.3s ease-in-out !important; */
}

.custom-nav-btn-outline{
   background: transparent !important;
   border: 1px solid #ee5e0b !important;
   padding: 7px 12px !important;
   color: #2e2c2c !important;
   text-decoration: none !important;
   transition: all 0.3s ease-in-out !important;
}

.custom-nav-btn-outline:hover{
    background: #e7b305 !important;
    color: #fff !important;
}

.custom-nav-btn{
    background: #ee5e0b !important;
    border: 1px solid #ee5e0b !important;
    padding: 7px 12px !important;
    color: #fff !important;
    text-decoration: none !important;
    transition: all 0.3s ease-in-out !important;
}

.custom-nav-btn:hover{
    background: #e7b305 !important;
    border: 1px solid #e7b305 !important;
}

.sub-hero-section{
    background-image: url('Assets/banner-img.jpeg');
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    height: 700px!important;
}

.sub-hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   
    z-index: 1;
}

.sub-hero-text{
    position: absolute;
    top: 50%;
    left: 10%;
    /* transform: translate(-50%, -50%); */
    color: #ee710b;
    font-family: "Adamina", Sans-serif;
    font-size: 35px;
    font-weight: 500;
    /* line-height: 40px; */
    z-index: 10;
    text-align: left;
}




/* dashboard  */
.dashboard-section{
    padding: 60px 0;
}


.dashboard-container{
    max-width: 1400px;
    width: 90%;
    margin: 0 auto;
}

.dashboard-content{
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.content-left{
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 300px;
}

.content-left .tab{
    padding: 15px 20px;
    margin: 0;
    font-weight: 600;
    cursor: pointer;
}


.active-tab{
    background: linear-gradient(#eb8908, #e4e005);
    color: #fff;
}

.content-right{
    width: calc(100% - 330px);
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 10px;
}

.content-header{
    display: none;
}

.view-menu-bar{
    display: none;
}

.tab-content {
    padding: 10px;
}

.user-profile-img-wrap{
    max-width: 280px;
    width: 100%;
    height: 310px;

    width: 100%;
}

.user-profile-img-wrap img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-profile-info-wrap p{
    margin: 0;
}
.next-btn{
    background-color: #032547 !important;
    color: #fff !important;
    border-radius: 4px;
    padding: 10px 20px;
    border: none !important;
    outline: none !important;
}


@media screen and (max-width: 1400px) {
    .content-left{
        width: 250px;
    } 
    .content-right{
        width: calc(100% - 280px);
        
    }
}

@media screen and (max-width: 991px) {
    .content-left{
        position: fixed;
        z-index: 10;
        width: 100vw;
        height: 100vh;
        top: 0;
        left: 0;
        padding: 20px;
        display: none;
    } 

    .content-right{
        width: 100%;
    }

    .content-header{
        display: flex;
        justify-content: flex-end;
        padding: 10px 20px;
        font-size: 1.2rem;
    }

    .view-menu-bar{
        display: flex;
        justify-content: flex-end;
        padding: 10px;
    }

    .view-menu-bar p{
        margin: 0;
        padding: 7px 10px;
        background-color: var(--primary-color);
        color: #fff;
        border-radius: 4px;
        cursor: pointer;    
    }
  
}

.about-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 20px;
    justify-content: space-between;
}

.about-section img {
    width: 100%;
    max-width: 414px;
    border-radius: 10px;
}

.about-content {
    flex: 1;
    padding: 20px;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.about-content p {
    margin-bottom: 15px;
    color: #555;
}

.about-points {
    list-style: none;
    padding-left: 0;
}

.about-points li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.about-points li::before {
    content: '\2713'; 
    color: green;
    font-weight: bold;
    margin-right: 10px;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 15px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item .caption {
    padding: 10px;
    text-align: center;
    background: #fff;
}

.gallery-item .caption p {
    margin: 0;
    color: #333;
    font-size: 1rem;
}




@media (max-width: 768px) {

    .about-section {
        flex-direction: column;
    }

    .about-content {
        text-align: center;
    }

    .about-content ul {
        display: inline-block;
        text-align: left;
    }
    .gallery-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

/* dashbord-content */
.content-points{
    list-style: none;
    padding-left: 0;
    counter-reset: list-counter;
}
.content-points li{
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    counter-increment: list-counter; 
    position: relative;
    padding-left: 25px; 
}
.content-points li::before{
    content: counter(list-counter) '.'; 
    position: absolute;
    left: 0;
    color: #333;
    font-weight: bold;

}





@media screen and (max-width: 768px) {
    .line-1 {
        display: none;
    }
}



/* sign up section  */
.signup-section{
    padding: 60px 0;
}

.sign-up-img-wrap{
    max-width: 500px;
    width: 100%;
}

.sign-up-img-wrap img{
    width: 100%;
    
}

.sign-up-form-wrap{
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.sign-up-form-wrap label{
    margin-bottom: 3px;
}

.sign-up-form-wrap input{
    width: 100%;
    padding: 7px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-heading{
    color: #032547;
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 30px;
   
}

/* contact page */
.contact-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}


/* .contact-col-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 15px;
} */

.contact-info {
    padding: 20px;
}

.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 1rem;
}

.contact-info i {
    margin-right: 10px;
    color: #ff7300;
}

.contact-form h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea,
.contact-form button {
    margin-bottom: 15px;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    background-color: #ff7300;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #ee5e0b;
}


.footer-section{
    background-color: #ee5e0b;
    padding: 20px 0;
}

@media screen and (max-width: 991px) {
    .signup-form-wrapper{
        flex-direction: column-reverse;
    }
    .sign-up-form-wrap{
        margin-bottom: 30px;
    }
    .sub-hero-section{
        height: 420px!important;
    }
    .sub-hero-text{
        font-size: 25px!important;
        top: 37%!important;
    }
}

@media screen and (max-width: 768px) {
    .navbar-item{
        margin: 10px 0;
    }
    .sub-hero-section{
        height: 270px!important;
    }
    .sub-hero-text{
        font-size: 20px!important;
        top: 37%!important;
    }
}

/* Responsive Styles */
@media (max-width: 588px) {
    .contact-row {
        flex-direction: column;
    }

    .contact-col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .contact-info h2,
    .contact-form h2 {
        font-size: 2rem!important;
        text-align: center!important; 
    }

    .contact-info p,
    .contact-form form {
        max-width: 100%!important;
        margin: 0 auto!important; 
    }
}
@media screen and (max-width: 450px){
    .sub-hero-section{
        height: 180px!important;
    }
    .sub-hero-text{
        font-size: 14px!important;
       
    }

}