/* ----Global CSS---- */

:root {
	--container-max-width: 1170px;
	--primary-color: #003255;
	--secondary-color: #09c3e7;
	--font-family: 'Roboto', sans-serif !important;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: var(--font-family);
}

/* ----Section banner---- */

#section-banner,
#section-banner-other {
	background-image: url('../images/jigarbhai-banner-img.JPG');
	/* max-height: 100vh; */
	/* height: 100vh; */
	/* display: flex; */
	/* align-items: center; */
	background-size: cover;
	/* background-position: center; */
	background-repeat: no-repeat;
	width: 100%;
	height: 100vh;
	position: relative;
	transition: background-size 0.8s ease; /* base transition */
	will-change: background-size;
}

#section-banner::before,
#section-banner-other::before {
	content: '';
	position: absolute;
	inset: 0;
	/* background-color: rgba(0, 0, 0, 0.25); */
	z-index: 1;
	pointer-events: none;
	transition: background-color 0.35s ease, opacity 0.35s ease;
	opacity: 1;
}

.section-details .title span {
	position: relative;
	display: inline-block;
}
.section-details .title span::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -8px;
	height: 3px;
	width: 0%;
	background: var(--primary-color);
	transition: width 0.45s ease;
}
#section-banner:hover .section-details .title span::after {
	width: 56%;
}

/* darken overlay when hovered */
#section-banner:hover::before {
	background-color: rgba(255, 255, 255, 0.7);
}

#section-banner-other:hover .section-details .title span::after {
	width: 56%;
}

/* darken overlay when hovered */
#section-banner-other:hover::before {
	background-color: rgba(255, 255, 255, 0.7);
}

.container {
	width: var(--container-max-width);
	margin-right: auto;
	margin-left: auto;
}

.section-details {
	/* padding-right: 15px; */
	/* padding-left: 570px; */
	/* padding-top: 120px; */
	text-align: center;
	padding: clamp(10rem, 5vw, 5rem) 1rem;
	position: relative; /* create new stacking context */
	z-index: 2;
	display: flex;
	justify-content: flex-end;
}

.title {
	font-size: 57px;
	/* line-height: 72px; */
	/* color: #09c3e7; */
	/* font-weight: 600; */
	text-transform: capitalize;
	margin: 0;
	/* line-height: 1.05; */
	color: var(--primary-color);
	/* scale between 1.6rem and 4rem depending on viewport */
	/* font-size: clamp(1.6rem, 5vw, 3.2rem); */
	font-weight: 700;
	line-height: 72px;
}

h1.title span {
	font-style: italic;
	font-size: 34px;
	line-height: 51px;
	/* color: #09c3e7; */
	/* font-weight: 600; */
	text-transform: capitalize;
	display: inline-block;
	padding: 15px 0;
	font-weight: normal;
	display: block; /* puts the subtitle on its own line */
	font-weight: 500;
	/* font-size: clamp(0.9rem, 2.2vw, 1.05rem); */
	margin-top: 1.35rem;
	opacity: 0.9;
	/* line-height: 30px; */
}

/* .btn-default {
	font-size: 18px;
	line-height: 24px;
	padding: 20px 19px;
	border: 2px solid #fff;
	text-transform: uppercase;
	border-radius: 0px;
	font-weight: 700;
	background: transparent;
	color: #fff;
}

.btn-default:hover {
	background-color: #fff;
	color: #337ab7;
	text-decoration: none;
} */

/* ----navbar---- */

.bg-body-color {
	background-color: #002037;
}

.navbar-brand {
	text-transform: uppercase;
	font-weight: 700;
	color: #fff !important;
	line-height: 40px;
	float: left;
	height: 50px;
	margin-left: 10px;
	font-size: 18px;
}

.navbar-collapse {
	padding-right: 15px;
	padding-left: 15px;
	overflow-x: visible;
	flex-grow: 0;
}

.logo-container {
	display: flex;
	gap: 15px;
	align-items: center;
}

.container-fluid img {
	width: 50px;
	height: fit-content;
}

.container-fluid h3 {
	font-size: 30px;
	text-transform: uppercase;
	color: var(--secondary-color);
	/* margin-left: -150px; */
	line-height: 22px;
	margin-top: 10px;
}

.container-fluid span {
	font-size: 15px;
	color: #fff;
}

.nav-link {
	color: white !important;
}

.nav-item {
	font-weight: 300;
	font-size: 18px;
	font-family: var(--font-family);
	margin-right: 20px;
	line-height: 30px;
	/* padding: 30px 20px; */
}

.navbar .nav-link.active {
	color: var(--secondary-color) !important;
	background-color: initial;
}

.nav-link:hover {
	color: var(--secondary-color) !important;
}

.navbar-toggler {
	position: relative;
	float: right;
	padding: 9px 10px;
	margin-top: 8px;
	margin-right: 15px;
	margin-bottom: 8px;
	border: 1px solid #ddd;
	border-radius: 0;
}

.dropdown-menu {
	margin: 4px 0 0 0;
	width: 250%;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
	background: #fff;
	border: none;
	border-radius: 0;
}

.product-item {
	color: #566366 !important;
	transition: 0.3s;
	display: block;
	font-size: 16px;
	text-transform: none;
	text-decoration: none;
	font-family: 'Raleway', sans-serif;
	padding: 5px 10px;
}

.dropdown-toggle:hover::after {
	color: var(--secondary-color);
}

.product-item:hover {
	color: var(--secondary-color) !important;
}

.navbar .dropdown:hover .dropdown-menu {
	display: block;
	margin-top: 0;
}

.navbar .dropdown-toggle::after {
	transition: transform 0.2s;
}
.navbar .dropdown:hover .dropdown-toggle::after {
	transform: rotate(180deg);
}

.icon-bar {
	background-color: var(--secondary-color);
	display: block;
	width: 22px;
	height: 2px;
	border-radius: 1px;
}

.icon-bar + .icon-bar {
	margin-top: 4px;
}

.media {
	display: flex;
	align-items: center;
}

.media i {
	color: var(--secondary-color);
	font-size: 25px;
	padding-right: 10px;
}

/* .media-body.space-sm {
	margin-left: 10px;
} */

.media-title {
	text-align: left;
	line-height: 1.3;
	font-weight: 400;
	font-size: 15px;
	color: #fff;
	padding-right: 10px;
}

.info {
	font-weight: 700;
	font-size: 15px;
	color: #fff;
}

/* ----Section contact---- */

.section-contact {
	background: #002037;
	padding: 100px 0px;
	position: relative;
}

.contact-title {
	color: #fff;
	margin-bottom: 50px;
	font-weight: 700;
	font-size: 30px;
	line-height: 24px;
	text-transform: uppercase;
	margin-top: 20px;
}

.form-group {
	margin-bottom: 40px;
}

.form-group label {
	color: var(--secondary-color);
	margin-bottom: 20px;
	font-size: 18px;
	display: inline-block;
	max-width: 100%;
	font-weight: 700;
}

.form-control {
	height: 50px;
	border-radius: 0px;
	background: #002037;
	border: 1px solid var(--secondary-color);
	color: #b9d0e1;
}

.form-control::placeholder {
	color: #a1b9ca;
}

.sucess {
	color: #fff;
	font-size: 12px;
	font-style: italic;
	display: block;
}

.error-message-2 {
	color: rgb(220, 92, 92);
	font-size: 12px;
	font-style: italic;
	display: block;
}

.hide {
	display: none;
}

.form-error {
	border-color: rgb(220, 92, 92);
}

.error-message {
	color: rgb(220, 92, 92);
	font-size: 12px;
	font-style: italic;
	display: none;
}

.contact-btn .btn {
	background-color: var(--secondary-color);
	border: 0px;
}

.contact-left {
	margin-left: 30px;
	padding-top: 50px;
}

.contact-left h4 {
	color: var(--secondary-color);
	font-size: 14px;
	text-transform: uppercase;
	/* line-height: 40px; */
}

.location-2 h4 {
	margin-top: 25px;
}

.contact-left p {
	color: #a1b9ca;
	font-size: 12px;
	line-height: 16px;
	margin: 0 0 10px;
	text-transform: capitalize;
}

.location-2 h4 {
	/* line-height: 10px; */
}

.contact-left ul {
	margin-left: -30px;
	list-style: none;
}

.contact-left ul li span {
	color: #fff;
	font-size: 12px;
}

.contact-left ul li a {
	font-size: 12px;
}

.contact-left ul li a:hover {
	color: #fff;
}

/* ----Footer Section---- */

/* ----Section Footer Details---- */

#section-footer-details {
	background: #002037;
}

.section-footer-detail {
	padding-top: 30px;
}

.footer-title h4 {
	color: #fff;
	font-size: 22px;
	line-height: 40px;
	font-weight: 700;
}

.footer-title span {
	color: #fff;
	font-size: 14px;
	font-style: italic;
}

.footer-title p {
	font-size: 14px;
	color: #fff;
	line-height: 25px;
	padding: 20px 0;
}

.footer-contact ul {
	list-style-type: none;
}

.footer-contact ul li {
	color: #fff;
	margin-bottom: 15px;
	position: relative;
	display: block;
}

.footer-contact ul li i {
	margin-left: -30px;
	font-size: 20px;
}

.footer-contact ul li a {
	color: #fff;
	padding-left: 15px;
}

.footer-contact ul li a:hover {
	color: var(--secondary-color);
}

.footer-email ul {
	list-style-type: none;
}

.footer-email ul li {
	color: #fff;
	margin-bottom: 15px;
	position: relative;
	display: block;
}

.footer-email ul li i {
	margin-left: -30px;
	font-size: 20px;
}

.footer-email ul li a {
	color: #fff;
	font-size: 14px;
	padding-left: 15px;
}

.footer-email ul li a:hover {
	color: var(--secondary-color);
}

.footer-social ul {
	display: flex;
	/* justify-content: space-around;
	align-items: center; */
}

.bi-facebook {
	padding-right: 20px;
}

.footer-social ul {
	list-style-type: none;
	/* padding: 10px 0; */
}

.footer-social ul li a i {
	color: #fff;
	font-size: 25px;
}

.footer-social ul li a i:hover {
	color: var(--secondary-color);
}

.departments-name {
	color: var(--secondary-color);
	font-size: 26px;
	font-weight: 500;
	line-height: 40px;
	padding-bottom: 20px;
	position: relative;
}

.departments-name::before {
	content: '';
	position: absolute;
	display: block;
	width: 50px;
	height: 3px;
	background-color: #fff;
	bottom: 0;
	left: 0;
	margin-bottom: 10px;
}

.departments-names ul li a {
	font-size: 17px;
}

.footer-location ul {
	list-style-type: none;
}

.footer-location ul li p:hover {
	color: var(--secondary-color);
}

.footer-location ul li p {
	color: #fff;
	font-size: 17px;
	/* text-align: center; */
	/* text-transform: uppercase; */
	margin-top: -25px;
	margin-left: -10px;
}

.footer-location ul i {
	color: #fff;
	font-size: 15px;
	margin-left: -35px;
}

.footer-location ul i:hover {
	color: var(--secondary-color);
}

.footer-location li small {
	color: #fff;
	margin-left: -10px;
}

/* ----Section Footer---- */

.section-footer {
	background: #002037;
	padding: 20px 0;
}

.list-inline {
	padding-left: 0;
	margin-left: -5px;
	list-style: none;
}

.list-inline > li {
	display: inline-block;
	padding-right: 5px;
	padding-left: 5px;
}

.socail-link a i {
	width: 35px;
	height: 35px;
	border-radius: 100%;
	color: #08c2e6;
	font-size: 20px;
	line-height: 35px;
}

.section-footer h4 {
	color: var(--secondary-color);
	/* margin-top: 30px; */
	font-size: 17px;
	line-height: 20px;
	font-weight: 400;
}

.section-footer a {
	color: #ffff;
}

.section-footer a:hover {
	color: var(--secondary-color);
}
