/*******************************/
/********* General CSS *********/
/*******************************/

:root {
    --primary-color: #52318a;
    /*
    var(--primary-color);
    #var(--primary-color);;
    */

    --secondary-color: #c3c0e0;
    /*
    var(--secondary-color);
    #
    */
    
    --tertiary-color: #ebe5f2;
    /*
    var(--tertiary-color);
    #
    */
    
    --white-color: #ffffff;
    /*
    var(--white-color);
    #ffffff
    */
    
    --light-blue-color: #b5dbe6;
    /*
    var(--light-blue-color);
    var(--light-blue-color);
    */
    
    --cyan-color: #2fb0c6;
    /*
    var(--cyan-color);
    var(--light-blue-color);
    */
}

white-svg {
    fill: var(--white-color);
}



body {
    color: #797979;
    background: #ffffff;
    font-family: 'Open Sans', sans-serif;
}

h1,
h2, 
h3, 
h4,
h5, 
h6 {
    color: var(--primary-color);
}

a {
    color: var(--white-color);
    transition: .3s;
}

a:hover,
a:active,
a:focus {
    color: var(--light-blue-color);
    outline: none;
    text-decoration: none;
}

.btn:focus,
.form-control:focus {
    box-shadow: none;
}

.container-fluid {
    max-width: 1366px;
}

.back-to-top {
    position: fixed;
    display: none;
    background: var(--primary-color);
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 9;
}

.back-to-top:hover {
    background: var(--light-blue-color);
}

.back-to-top:hover i {
    color: var(--primary-color);
}

.back-to-top i {
    color: var(--white-color);
    padding-top: 10px;
}

/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
.navbar {
    position: relative;
    transition: .5s;
    z-index: 999;
}

.navbar.nav-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    /*box-shadow: 0 2px 5px rgba(0, 0, 0, .3);*/
}

.navbar .navbar-brand img {
    max-width: 400px;
    max-height: auto;
    transition: max-width 0.5s ease; /* Adjust duration and easing function as needed */
}

.navbar-dark .navbar-nav,
.navbar-dark .navbar-nav,
.navbar-dark .navbar-nav,
.navbar-dark .navbar-nav {
    padding: 30px 10px 30px 10px;
    color: var(--white-color);
}

.nav-link,
.nav-link:focus,
.nav-link:hover,
.nav-link.active {
    padding: 10px 10px 30px 10px;
    color: var(--white-color);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    background: rgba(256, 256, 256, .1);
    transition: none;
}

.navbar-dark .navbar-nav .btn.nav-link:hover {
    color: var(--primary-color) !important;
    background: var(--light-blue-color);
    transition: none;
}

.navbar .dropdown-menu {
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: var(--primary-color);
    font-size: 20px;
}

.navbar .dropdown-menu a {
    color: var(--white-color);
}

.navbar .dropdown-menu a:hover {
    color: var(--your-hover-color);
    background-color: var(--light-blue-color);
}

.navbar .dropdown-menu .dropdown-item.all {
    margin-bottom: 20px;
}

.navbar .nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

.navbar a.btn {
    white-space: nowrap;
}

@media (min-width: 1031px) {
    .navbar {
        position: absolute;
        width: 100%;
        top: 0px;
        padding: 10px 60px;
        background: var(--primary-color) !important;
        z-index: 9;
    }
    
    .navbar.nav-sticky {
        padding: 0px 60px;
        background: var(--primary-color) !important;
    }
    
    .navbar a.nav-link {
        padding: 8px 15px;
        font-size: 22px;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .navbar a.btn {
        padding: 8px 15px;
        font-size: 22px;
        letter-spacing: 1px;
        text-transform: uppercase;
        background: var(--secondary-color);
        color: var(--primary-color) !important;
        font-weight: bold;
    }
    .service {
        padding: 250px 0 15px 0;
    }
}

@media (max-width: 1030.98px) {   
    .navbar {
        padding: 15px;
        background: var(--primary-color) !important;
    }
    
    .navbar .navbar-brand span {
        color: #ffffff;
    }
    
    .navbar a.nav-link {
        padding: 5px;
    }
    
    .navbar .dropdown-menu {
        box-shadow: none;
    }
    
    .navbar a.btn {
        padding: 8px 15px;
        background: var(--secondary-color);
        color: var(--primary-color) !important;
        text-transform: uppercase;
        font-weight: bold;
    }

    .service {
        padding: 45px 0 15px 0;
    }
}

@media (max-width: 520px) {

    .navbar .navbar-brand img {
    max-width: 85%;
    max-height: auto;
}



    .navbar .container-fluid {
        display: flex;
        flex-wrap: nowrap;
    }

    .navbar .navbar-brand {
        flex: 1;
    }

    .navbar .navbar-nav {
        flex: 0 0 auto;
    }


}

/*******************************/
/********** Hero CSS ***********/
/*******************************/
.hero {
    position: relative;
    width: 100%;
    margin-bottom: 5px;
    padding: 400px 0 0; /* 200px top padding, 0 right padding, 0 bottom padding, 0 left padding */
    background: var(--white-color);
    overflow: hidden;
    background-image: url('../img/home-back.jpeg'); /* Replace 'img/home-back.jpeg' with the correct path to your image */
    background-size: cover;
    background-position: center;
/*
    height: 140vh;  Set the height of the hero section */
    height: 1200px;
}

.hero .container-fluid {
    padding: 0;
}

.hero .hero-image {
    position: relative;
    text-align: right;
}

.hero .hero-image img {
    max-width: 80%;
    max-height: 80%;
}

.hero .hero-text {
    position: relative;
    padding-left: 75px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.hero .hero-text h1 {
    color: var(--white-color);
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    white-space: nowrap; /* Prevent text from wrapping */
}

.hero .hero-text p {
    color: var(--white-color);
    font-size: 18px;
    margin-bottom: 25px;
}

.hero .hero-btn .btn {
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--white-color);
    background: var(--primary-color);
    border-radius: 0;
    transition: .3s;
}

.hero .hero-btn .btn:hover {
    color: var(--primary-color);
    background: #ffffff;
}

.hero .hero-btn .btn:first-child {
    margin-right: 10px;
}

@media (max-width: 991.98px) {
    .hero{
        background-position: center top; /* Adjust the vertical position to crop more from the top */
        height: 600px; /* Adjust the height as needed for smaller screens */
    }
    .hero .hero-text {
        padding-bottom: 100px;
    }
    .hero .hero-text h1 {
    color: var(--white-color);
    font-size: 6vw; /* Adjust this value as needed */
    font-weight: 700;
    margin-bottom: 20px;
    white-space: nowrap; /* Prevent text from wrapping */
    width: 80%; /* This will make the text take up 80% of the width */
    overflow-wrap: break-word; /* This will break the text to next line if it exceeds the width */
	}

}

@media (max-width: 767.98px) {	
	.hero .hero-image {
		text-align: left;
		margin-top: 30px;
	}
    .hyperbar {
        display: none;
    }

.hero .hero-text h1 {
    color: var(--white-color);
    font-size: 6vw; /* Adjust this value as needed */
    font-weight: 700;
    margin-bottom: 20px;
    white-space: nowrap; /* Prevent text from wrapping */
    width: 80%; /* This will make the text take up 80% of the width */
    overflow-wrap: break-word; /* This will break the text to next line if it exceeds the width */
}


}


/*******************************/
/******* Page Header CSS *******/
/*******************************/
.page-header {
    position: relative;
    margin-bottom: 20px;
    padding: 150px 0 25px 0;
    text-align: center;
    background: var(--light-blue-color);
}

.page-header h2 {
    position: relative;
    color: var(--primary-color);
    font-size: 60px;
    font-weight: 700;
}

.page-header a {
    position: relative;
    padding: 0 12px;
    font-size: 22px;
    color: var(--primary-color);
}

.page-header a:hover {
    color: #ffffff;
}

.page-header a::after {
    position: absolute;
    content: "/";
    width: 8px;
    height: 8px;
    top: -2px;
    right: -7px;
    text-align: center;
    color: var(--primary-color);
}

.page-header a:last-child::after {
    display: none;
}

@media (max-width: 767.98px) {
    .page-header h2 {
        font-size: 35px;
    }
    
    .page-header a {
        font-size: 18px;
    }
}


@media (min-width: 992px) {
    .page-header {
    padding: 250px 0 25px 0;
    }
}

@media (max-width: 992.1px) {
    .page-header {
        padding: 30px 0 25px 0;
    }
}

/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
    position: relative;
    margin: 0 auto;
    margin-bottom: 15px;
}

.section-header p {
    display: inline-block;
    margin: 0 30px;
    margin-bottom: 5px;
    padding: 0 10px;
    position: relative;
    font-size: 16px;
    font-weight: 600;
    background: #ffffff;
}

.section-header p::after {
    position: absolute;
    content: "";
    height: 2px;
    top: 11px;
    right: -30px;
    left: -30px;
    background: var(--light-blue-color);
    z-index: -1;
}

.section-header h2 {
    margin: 0;
    position: relative;
    font-size: 40px;
    font-weight: 700;
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 30px;
    }
}


/*******************************/
/********** About CSS **********/
/*******************************/
.about {
    position: relative;
    width: 100%;
    padding: 45px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.about .section-header {
    margin-bottom: 30px;
    margin-left: 0;
    width: 100%;
}

.about .about-item {
    width: 50%;
}

.about .about-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.about .about-img img {
    max-width: 100%; /* Use max-width instead of width to ensure responsiveness */
    max-height: 100%; /* Use max-height to maintain the aspect ratio */
    border-radius: 50%;
    object-fit: cover;
}

.about .about-text p {
    font-size: 16px;
}

.about .about-text a.btn {
    position: relative;
    margin-top: 15px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--white-color);
    background: var(--primary-color);
    border-radius: 0;
    transition: .3s;
}

.about .about-text a.btn:hover {
    color: var(--primary-color);
    background: var(--light-blue-color);
}



.about .about-img .border-svg path {
    fill: var(--primary-color);
}

.about .about-img:hover .border-svg path,
.about .about-img.active .border-svg path {
    fill: var(--cyan-color);
}

.about .about-img img {
    width: 400px; /* Set the width of the circular image */
    height: 400px; /* Set the height of the circular image */
    border-radius: 50%; /* Make the image round */
    object-fit: cover; /* Ensure the image covers the circular area */
}

@media (max-width: 1205px) {
    .about .about-item {
        width: 100%;
        text-align: center;
    }
}

/*******************************/
/********** Policies CSS **********/
/*******************************/
.policy {
    position: relative;
    width: 100%;
    padding: 45px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.policy .section-header {
    margin-bottom: 30px;
    margin-left: 0;
    width: 100%;
}

.policy .policy-item {
    width: 100%;
    margin: 30px;
}

.policy .policy-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.policy .policy-img img {
    max-width: 100%; /* Use max-width instead of width to ensure responsiveness */
    max-height: 100%; /* Use max-height to maintain the aspect ratio */
    border-radius: 50%;
    object-fit: cover;
}

.policy .policy-text p {
    font-size: 16px;
}

.policy .policy-text a.btn {
    position: relative;
    margin-top: 15px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--white-color);
    background: var(--primary-color);
    border-radius: 0;
    transition: .3s;
}

.policy .policy-text a.btn:hover {
    color: var(--primary-color);
    background: var(--light-blue-color);
}

.policy .policy-text a {
    color: var(--primary-color);
}

.policy .policy-text a:hover {
    color: var(--primary-color);
}

.policy .policy-img .border-svg path {
    fill: var(--primary-color);
}

.policy .policy-img:hover .border-svg path,
.policy .policy-img.active .border-svg path {
    fill: var(--cyan-color);
}

.policy .policy-img img {
    width: 400px; /* Set the width of the circular image */
    height: 400px; /* Set the height of the circular image */
    border-radius: 50%; /* Make the image round */
    object-fit: cover; /* Ensure the image covers the circular area */
}

@media (max-width: 1205px) {
    .policy .policy-item {
        width: 100%;
        text-align: center;
    }
}

/*******************************/
/********* Service CSS *********/
/*******************************/
.service {
    position: relative;
    width: 100%;
    padding: 20px 0 15px 0;
}

.service .service-item {
    position: relative;
    width: 23%;
    text-align: center;
    margin: 30px 10px;
    padding: 30px;
    /*border: 1px solid rgba(0, 0, 0, .07);*/
    border-radius: 10px; /* Border radius for rounded corners */
    transition: all 0.3s ease;
}

.service .service-item .border-svg path {
    fill: var(--primary-color);
}

.service .service-item:hover .border-svg path,
.service .service-item.active .border-svg path {
    fill: var(--cyan-color);
}

.service .service-item h3 {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
    transition: .3s;
    white-space: nowrap; /* Prevent text from wrapping */
}

.service .service-item:hover h3,
.service .service-item.active h3 {
    color: var(--cyan-color);
}

.service .service-item .border-svg {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -51%);
    width: 213px;
    height: 213px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1; /* Ensure the border is above the service image */
}

.service .service-image img {
    width: 200px; /* Set the width of the circular image */
    height: 200px; /* Set the height of the circular image */
    border-radius: 50%; /* Make the image round */
    object-fit: cover; /* Ensure the image covers the circular area */
}

/* Media queries to adjust the number of items per row based on screen width */
@media (max-width: 1205px) {
    .service .service-item {
        width: 31%; /* Adjust width for 3 items per row */
    }

    @media (max-width: 1005px) {
        .service .service-item {
            width: 40%; /* Adjust width for 2 items per row */
        }

        @media (max-width: 777px) {
            .service .service-item {
                width: 100%; /* Full width for 1 item per row */
            }
        }
    }
}


/*******************************/
/**** Service Listing CSS ******/
/*******************************/
.service-listing {
    padding-top: 0px;
    display: flex;
    justify-content: center; /* Center content horizontally */
    max-width: 900px; /* Limit the width to 600px */
    margin: 0 auto; /* Center the container horizontally on the page */
    margin-bottom: 90px;
    position: relative;
}

.service-listing .description {
    text-align: center;
    width: 100%; /* Make the description take 100% of the container width */
}

.service-listing .description a {
    color:var(--primary-color);
}

.service-listing .description a:hover {
    color:var(--light-blue-color);
}

.service-listing .circle {
    position: relative;
    width: 300px; /* Set the width of the circular image */
    height: 300px; /* Set the height of the circular image */
    overflow: hidden;
}

.service-listing .service-points {
    margin-top: 40px;
}

.service-listing .facts {
    margin-top: 60px;
}

.service-listing .facts h3 {
    margin-left: 20px;
}

.service-listing .facts li {
    line-height: 1.9;
}

@media (max-width: 992.1px) {
    .service-listing .circle {
        left: 50%;
        transform: translateX(-50%);
    }
}

/*******************************/
/********** Class CSS **********/
/*******************************/
.class {
    position: relative;
    padding: 45px 0 15px 0;
}

.class #class-filter {
    padding: 0;
    margin: -15px 0 25px 0;
    list-style: none;
    font-size: 0;
    text-align: center;
}

.class #class-filter li {
    cursor: pointer;
    display: inline-block;
    margin: 5px;
    padding: 6px 12px;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 400;
    border-radius: 0;
    background: none;
    border: 1px solid var(--primary-color);
    transition: .3s;
}

.class #class-filter li:hover,
.class #class-filter li.filter-active {
    background: var(--primary-color);
    color: var(--white-color);
}

.class .class-item {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
    transition: .3s;
}

.class .class-wrap {
    position: relative;
    width: 100%;
}

.class .class-img {
    position: relative;
}

.class .class-img img {
    position: relative;
    width: 100%; 
    height: 100%; 
    object-fit: cover;
}

.class .class-text {
    position: relative;
    padding: 30px 30px 25px 30px;
    border-right: 1px solid rgba(0, 0, 0, .07);
    border-bottom: 1px solid rgba(0, 0, 0, .07);
    border-left: 1px solid rgba(0, 0, 0, .07);
}

.class .class-text h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.class .class-teacher {
    position: relative;
    height: 40px;
    margin-top: -50px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    background: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    border-radius: 40px;
}

.class .class-teacher img {
    width: 40px;
    height: 40px;
    border-radius: 40px;
    background: var(--light-blue-color);
}

.class .class-teacher h3 {
    width: calc(100% - 95px);
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 0 15px;
    white-space: nowrap;
    overflow: hidden;
}

.class .class-teacher a {
    width: 40px;
    height: 40px;
    padding: 0 0 3px 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 100;
    color: var(--primary-color);
    background: var(--light-blue-color);
    border-radius: 40px;
    transition: .3s;
}

.class .class-wrap:hover .class-teacher a {
    color: var(--light-blue-color);
    background: var(--primary-color);
}

.class .class-meta {
    position: relative;
    display: flex;
    align-items: center;
}

.class .class-meta p {
    margin: 0;
    font-size: 14px;
}

.class .class-meta p i {
    margin-right: 5px;
    color: var(--primary-color);
}

.class .class-meta p:first-child {
    margin-right: 10px;
}


/*******************************/
/********* Pricing CSS *********/
/*******************************/
.price {
    position: relative;
    width: 100%;
    padding: 45px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.price .section-header {
    margin-bottom: 30px;
    margin-left: 0;
    width: 100%;
}

.price .price-item {
    width: 100%;
}

.price .price-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.price .price-img img {
    max-width: 100%; /* Use max-width instead of width to ensure responsiveness */
    max-height: 100%; /* Use max-height to maintain the aspect ratio */
    border-radius: 50%;
    object-fit: cover;
}

.price .price-text p {
    font-size: 16px;
}

.price .price-text a.btn {
    position: relative;
    margin-top: 15px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--white-color);
    background: var(--primary-color);
    border-radius: 0;
    transition: .3s;
}

.price .price-text a.btn:hover {
    color: var(--primary-color);
    background: var(--light-blue-color);
}

.price .price-item a {
    color: var(--primary-color);
}

.price .price-item a:hover {
    color: var(--primary-color);
}

.price .price-img .border-svg path {
    fill: var(--primary-color);
}

.price .price-img:hover .border-svg path,
.price .price-img.active .border-svg path {
    fill: var(--cyan-color);
}

.price .price-img img {
    width: 400px; /* Set the width of the circular image */
    height: 400px; /* Set the height of the circular image */
    border-radius: 50%; /* Make the image round */
    object-fit: cover; /* Ensure the image covers the circular area */
}

@media (max-width: 1205px) {
    .price .price-item {
        width: 100%;
        text-align: center;
    }
}



/*******************************/
/*********** Index CSS **********/
/*******************************/
.hyperbar {
    position: relative;
    left: 0;
    width: 100%;
    background-color: transparent;
    padding-top: 150px; /* Adjust the top padding to create space */
    padding-bottom: 0px; /* You can adjust the bottom padding as well if needed */
}

.hyperbar .row {
    justify-content: center;
}

.hyper-card {
    align-items: center;
    background-color: var(--primary-color);
    border-radius: 100px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .3);
    color: var(--white-color);
    display: flex;
    flex-direction: column;
    gap: 25px;
    justify-content: space-between;
    max-width: 160px;
    min-height: 250px;
    padding: 2.5rem 1.5rem 1.5rem;
    text-align: center;
    transition: all var(--transition-medium);
    width: 100%;
    z-index: 10;
    fill: var(--white-color);
}


.hyper-icon {
    width: 60px;
    height: 60px;
    line-height: 60px; /* Vertical centering */
    text-align: center; /* Horizontal centering */
}

.hyper-icon i {
    font-size: 50px; /* Adjust the icon size */
}

.hyper-link {
    border: 1px solid var(--white-color);
    border-radius: 100px;
    font-size: 1.25rem;
    padding: 1rem;
    transition: all var(--transition-medium);
    width: 100%;
    background-color: var(--primary-color);
}



.hyper-link:hover {
    color: var(--primary-color) !important;
    background: var(--light-blue-color);
    transition: none;
    border: 1px solid var(--light-blue-color);
    font-weight: bold;
}


/*******************************/
/*********** Team CSS **********/
/*******************************/
.team {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.team .team-item {
    position: relative;
    margin-bottom: 30px;
    padding: 15px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, .07);
}

.team .team-img {
    position: relative;
    overflow: hidden;
}

.team .team-img img {
    position: relative;
    width: 100%;
}

.team .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team .team-social a {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    font-size: 16px;
    color: var(--white-color);
    background: var(--primary-color);
    opacity: 0;
}

.team .team-social a:hover {
    color: var(--primary-color);
    background: var(--light-blue-color);
}


.team .team-item:hover .team-social {
    background: rgba(256, 256, 256, .5);
}

.team .team-item:hover .team-social a:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team .team-item:hover .team-social a:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team .team-item:hover .team-social a:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .2s;
}

.team .team-item:hover .team-social a:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .3s;
}

.team .team-text {
    position: relative;
    padding: 25px 15px 10px 15px;
    text-align: center;
    background: #ffffff;
}

.team .team-text h2 {
    font-size: 18px;
    font-weight: 600;
}

.team .team-text p {
    margin: 0;
}



/*******************************/
/********* Contact CSS *********/
/*******************************/
.contact {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.contact .container {
    max-width: 900px;
}

.contact .contact-item {
    text-align: center;
    margin-bottom: 30px;
}

.contact .contact-item i {
    width: 50px;
    height: 50px;
    padding: 12px 0;
    font-size: 25px;
    color: var(--primary-color);
    margin-bottom: 15px;
    border: 1px solid var(--light-blue-color);
    border-radius: 50px;
}

.contact .contact-item h2 {
    font-size: 25px;
    font-weight: 700;
}

.contact .contact-form {
    position: relative;
}

.contact .contact-form input {
    height: 45px;
    padding: 15px;
    background: none;
    border-radius: 0;
}

.contact .contact-form textarea {
    height: 150px;
    padding: 15px;
    background: none;
    border-radius: 0;
}

.contact .contact-form .btn {
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--light-blue-color);
    background: var(--primary-color);
    border-radius: 0;
    transition: .3s;
}

.contact .contact-form .btn:hover {
    color: var(--primary-color);
    background: var(--light-blue-color);
}

.contact .help-block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.contact a {
    position: relative;
    padding: 0 12px;
    font-size: 22px;
    color: var(--primary-color);
}

.contact a:hover {
    color: var(--light-blue-color);
}

/*******************************/
/********* Footer CSS **********/
/*******************************/
/* Styles for the footer section */
.footer {
    position: relative;
    margin-top: 10px;
    padding-top: 20px;
    background: var(--primary-color); /* Background color using custom variable */
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* Styles for the footer information */
.footer .footer-info p {
    position: relative;
    /* width: 100%; */
    color: var(--white-color);
    font-size: 20px;
    font-weight: 400;
    line-height: 35px;
    padding: 0 0px;
}

/* Styles for the footer information */
.footer .footer-info i {
    color: var(--white-color);
}

/* Styles for the footer logo */
.footer .footer-logo img {
    width: 400px;
    height: auto; /* Maintain aspect ratio */
}

/* Styles for the footer menu */
.footer .footer-menu {
    display: flex;
    justify-content: center; /* Center the content horizontally */
    align-items: center; /* Center the content vertically */
}


.footer .footer-menu a.btn {
    padding: 8px 15px;
    font-size: 22px;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: var(--secondary-color);
    color: var(--primary-color) !important;
    font-weight: bold;
    margin-top: 15px;
}

.footer .footer-menu .btn:hover {
    color: var(--primary-color) !important;
    background: var(--light-blue-color);
    transition: none;
}

/* Styles for individual items inside the footer menu */
.footer .footer-menu p {
    color: var(--white-color);
    font-size: 20px;
    font-weight: 600;
    line-height: 20px;
    padding: 0 0px;
}

/* Styles for the last item inside the footer menu */
.footer .footer-menu p:last-child {
    border: none;
}

/* Styles for the copyright section */
.footer .copyright {
    margin-top: 5px;
    padding: 0 0px;
    margin: 5px 0;
    width: 100%;
    text-align: center;
    color: var(--white-color); /* Text color using custom variable */
}

/* Styles for links on hover inside the copyright section */
.footer .copyright p a:hover {
    color: var(--light-blue-color); /* Text color on hover using custom variable */
}

/* Media query for responsiveness */
@media (max-width: 1000px) {
    .footer .copyright p,
    .footer .copyright .col-md-6:last-child p {
        margin: 5px 0;
        text-align: center;
    }
    .footer .footer-logo{
        width: 100%;
    }
    .footer .footer-logo img{
        width: 100%;
    }
}
/* Media query for responsiveness */
@media (max-width: 600px) {
    .footer .copyright p,
    .footer .copyright .col-md-6:last-child p {
        margin: 5px 0;
        text-align: center;
    }
    .footer .footer-menu{
        width: 100%;
    }
    .footer .footer-menu .btn{
        margin: 5px 0;
        width: 100%;
    }
}

/*******************************/
/*******************************/
/*********  SIDE BAR  **********/
/*******************************/
/*******************************/

.sidenav {
    height: 100%;
    width: 250px;
    position: fixed;
    left: 0;
    top: 30vh; /* Start 30% down the page */
    background-color: var(--white-color);
    padding-top: 20px;
}

.sidenav a {
    padding: 8px 16px;
    text-decoration: none;
    font-size: 18px;
    color: #000;
    display: block;
    transition: 0.3s;
}

.sidenav a:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.content {
    margin-left: 270px;
    padding: 20px;
}