/************************************************************
 * Push Sidebar Menu
 * 
 * Created on: March 3,2015
 * License   : MIT
 * Author    : Amr Mekkawy <amr.mekkawy@gmail.com>
 * URL       : http://github.com/AmrMekkawy/push-sidebar-menu
 ************************************************************/

.nav_trigger {
	cursor: pointer;
	display: inline-block;
	font-size: 26px;
	margin: 5px 20px 0 50px;
    float: right;
}
body.show_sidebar .nav_trigger {
	margin-right: 5px;
}
#push_sidebar {
	background: #0085C8;
	border-left: 1px solid #ddd;
	bottom: 0;
	color: #95A7B7;
	left: 100%;
	overflow: auto;
	position: fixed;
	top: 0;
	width: 25%;

	-webkit-transition: all .5s ease;
	   -moz-transition: all .5s ease;
	    -ms-transition: all .5s ease;
	     -o-transition: all .5s ease;
	        transition: all .5s ease;
}
body.show_sidebar #push_sidebar {
	left: 75%;
}
#wrapper {
	margin-right: 0;
	min-height: 1000px;
	overflow: hidden;
	width: 100%;
	
	-webkit-transition: all .5s ease;
	   -moz-transition: all .5s ease;
	    -ms-transition: all .5s ease;
	     -o-transition: all .5s ease;
	        transition: all .5s ease;
}
body.show_sidebar #wrapper {
	margin-right: 25%;
	width: 75%;
}

@media (max-width: 767px) {
	.nav_trigger {
		font-size: 19px;
		margin: 5px 5px 0 20px;
	}
	#push_sidebar {
		width: 80%;
	}
	body.show_sidebar #push_sidebar {
		left: 20%;
	}
	body.show_sidebar #wrapper {
		margin-right: 80%;
		width: 20%;
	}	
}

@media (min-width: 992px) {
	#push_sidebar {
		width: 20%;
	}
	body.show_sidebar #push_sidebar {
		left: 80%;
	}
	body.show_sidebar #wrapper {
		margin-right: 20%;
		width: 80%;
	}	
}

/***********************************/

#push_sidebar li a {
	padding: 10px 15px 10px 5px;
	display: block;
	font: 13px Tahoma, Arial, serif;
	background: #31373d;
	color: #95A7B7;
	text-decoration: none;
	border-bottom: 1px solid #3D454C;
}
#push_sidebar li a:hover {
	background-color: #272c30;
	color:#95a7b7
}
#push_sidebar li a .fa {
	font-size: 19px;
	float: right;
	width: 30px;
	text-align: center;
	margin-left: 5px;
}

.btn-gradient {
    background-image: linear-gradient(to right, #0085C8, #CC4699) !important;
    color: white !important;
    border: none;
}

.btn-gradient:hover {
    background-image: linear-gradient(to right, #CC4699, #0085C8) !important;
    color: white !important;
}

.info-box {
    background-color: rgba(255, 255, 255, 0.9);
	margin-top: 10px;
	margin-bottom: 10px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* Indafone Map Section */
.indafone-map-box {
  border: 1px solid #dee2e6;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  height: 450px;
}

.indafone-map-box iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.contact-item i {
  margin-right: 15px;
  font-size: 1.2rem;
  color: #007bff;
}

.contact-item span {
  flex: 1;
}

/* Job Accordion */
#jobAccordion .card-header {
    background-color: #f8f9fa;
}

#jobAccordion .btn-link {
    color: #007bff;
    text-decoration: none;
    width: 100%;
    text-align: left;
}

#jobAccordion .btn-link:hover {
    color: #0056b3;
    text-decoration: none;
}

#jobAccordion .card-body {
    background-color: #fff;
}



.navbar-nav .nav-item {

    margin-right: 15px;

}



.navbar-nav .nav-link {

    padding: 10px 15px;

    border-radius: 5px;

    transition: all 0.3s ease;

    font-size: 26px; /* Increased font size */

    color: #000; /* Default color */
    font-weight: bold;

}



@media (min-width: 768px) {

    .navbar-nav .nav-link:hover,

    .navbar-nav .nav-link:focus {

        background-color: transparent;

        color: #2b3a85;

    }

}

.navbar-nav .nav-link.active {
    color: #000 !important;
}

.navbar-light .navbar-nav .nav-link {
    color: #000 !important;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: #0085C8 !important;
}
