
:root {
	--primary-blue: #0056b3;
	--secondary-blue: #007bff;
	--light-blue: #e6f2ff;
	--dark-blue: #003366;
	--white: #ffffff;
	--light-gray: #f8f9fa;
	--gray: #6c757d;
	--dark-gray: #343a40;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	line-height: 1.6;
	color: var(--dark-gray);
	background-color: var(--white);
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1rem;
	color: var(--dark-blue);
}

h1 {
	font-size: 3rem;
}

h2 {
	font-size: 2.5rem;
}

h3 {
	font-size: 1.75rem;
}

p {
	margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	background-color: var(--primary-blue);
	color: var(--white);
	text-decoration: none;
	border-radius: 4px;
	font-weight: 600;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
}

.btn:hover {
	background-color: var(--dark-blue);
	transform: translateY(-2px);
}

.btn-outline {
	background-color: transparent;
	border: 2px solid var(--primary-blue);
	color: var(--primary-blue);
}

.btn-outline:hover {
	background-color: var(--primary-blue);
	color: var(--white);
}

/* Navigation */
.navbar {
	background-color: var(--white);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
}

.navbar-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0;
}

.navbar-logo {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--primary-blue);
	text-decoration: none;
}

.navbar-menu {
	display: flex;
	list-style: none;
}

.navbar-item {
	margin-left: 1.5rem;
}

.navbar-link {
	color: var(--dark-gray);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
}

.navbar-link:hover {
	color: var(--primary-blue);
}

.navbar-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 1.5rem;
	color: var(--dark-gray);
	cursor: pointer;
}

/* Hero Section */
.hero {
	background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
	color: var(--white);
	padding: 8rem 0 5rem;
	text-align: center;
}

.hero-content {
	max-width: 800px;
	margin: 0 auto;
}

.hero-tagline {
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
	font-weight: 300;
}

.hero-title {
	font-size: 3.5rem;
	margin-bottom: 2rem;
	color: var(--white);
}

.hero-description {
	font-size: 1.1rem;
	margin-bottom: 2rem;
	line-height: 1.8;
}

/* About Section */
.about {
	padding: 5rem 0;
	background-color: var(--light-gray);
}

.about-content {
	display: flex;
	align-items: center;
	gap: 4rem;
}

.about-text {
	flex: 1;
}

.about-image {
	flex: 1;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
	width: 100%;
	height: auto;
	display: block;
}

/* Services Section */
.services {
	padding: 5rem 0;
}

.section-title {
	text-align: center;
	margin-bottom: 3rem;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.service-card {
	background-color: var(--white);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	padding: 2rem;
	text-align: center;
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
	font-size: 3rem;
	color: var(--primary-blue);
	margin-bottom: 1.5rem;
}

.service-title {
	margin-bottom: 1rem;
	font-size: 1.5rem;
}

/* Expertise Section */
.expertise {
	padding: 5rem 0;
	background-color: var(--light-blue);
}

.expertise-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.expertise-card {
	background-color: var(--white);
	padding: 1.5rem;
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.expertise-title {
	color: var(--primary-blue);
	margin-bottom: 1rem;
	font-size: 1.25rem;
}

.expertise-list {
	list-style: none;
}

.expertise-item {
	margin-bottom: 0.5rem;
	display: flex;
	align-items: center;
}

.expertise-item:before {
	content: '•';
	color: var(--secondary-blue);
	font-weight: bold;
	margin-right: 0.5rem;
}

/* Footer */
.footer {
	background-color: var(--dark-blue);
	color: var(--white);
	padding: 3rem 0 2rem;
}

.footer-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 2rem;
}

.footer-logo {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--white);
}

.footer-contact {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.footer-email {
	color: var(--light-gray);
	text-decoration: none;
}

.footer-email:hover {
	color: var(--white);
	text-decoration: underline;
}

.footer-bottom {
	margin-top: 2rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
	font-size: 0.9rem;
	color: var(--light-gray);
}

/* Error Pop Up Messager start*/
.login_Div {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 20px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
.login_Div-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 50%;
  margin-top: 10%;
  text-align: center;
  border-radius: 25px;
}
.login_Div-content h2{
	font-family: Pacifico;
	font-weight: 200;
	font-size: 36px;
	color: #084582;
}
.login_Div_Span {
  color: #aaaaaa;
  float: right;
  font-size: 45px;
  font-weight: bold;
}
.login_Div_Span:hover,
.login_Div_Span:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
.login_Div-content h3{
	font-family: Pacifico;
	font-weight: 200;
	font-size: 24px;
	color: #084582;
	margin-top: 25px;
	font-size: 22px;
	text-decoration: underline;
}
.login_Div-content p{
	margin-top: 25px;
	font-size: 18px;
	color: #b02c23;
	padding-bottom: 30px;
}

/* Bordered form */
form {
  border: 3px solid #f1f1f1;
  margin-top: 30px;
}

/* Full-width inputs */
input[type=text], input[type=password] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

/* Set a style for all buttons */
button {
  background-color: #04AA6D;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  cursor: pointer;
  width: 100%;
}

/* Add a hover effect for buttons */
button:hover {
  opacity: 0.8;
}

/* Extra style for the cancel button (red) */
.cancelbtn {
  width: auto;
  padding: 10px 18px;
  background-color: #f44336;
}

/* Add padding to containers */
.container {
  padding: 16px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

/* The "Forgot password" text */
span.psw {
  float: right;
  padding-top: 16px;
}

.container1 {
	display: flex;
    justify-content: space-evenly;

}
.wrongMail {
	display: none;
	font-size: 13px;
    margin: 0;
    padding: 0;
	
}


#form_Container1 {
	display: none;
	
	
}


@media screen and (max-width: 600px) {
  .login_Div-content {
    margin-top: 35%;
	}
	.login_Div-content {
    width: 100%
	}
}

@media screen and (max-width: 300px) {
  span.psw {
    display: block;
    float: none;
  }
  .cancelbtn {
    width: 100%;
  }
}

/* Error Pop Up Messager end*/






/* Responsive Styles */
@media (max-width: 992px) {
	.about-content {
		flex-direction: column;
		gap: 2rem;
	}
	
	.about-image {
		order: -1;
	}
}

@media (max-width: 600px) {
	.navbar-menu {
		display: none;
		flex-direction: column;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background-color: var(--white);
		box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
		padding: 1rem 0;
	}
	
	.navbar-menu.active {
		display: flex;
	}
	
	.navbar-item {
		margin: 0;
	}
	
	.navbar-link {
		display: block;
		padding: 0.75rem 2rem;
	}
	
	.navbar-toggle {
		display: block;
	}
	
	.hero-title {
		font-size: 2.5rem;
	}
	
	.hero-tagline {
		font-size: 1.25rem;
	}
}

@media (max-width: 576px) {
	.hero-title {
		font-size: 2rem;
	}
	
	.hero-tagline {
		font-size: 1rem;
	}
	
	.section-title {
		font-size: 2rem;
	}
	
	.services-grid,
	.expertise-grid {
		grid-template-columns: 1fr;
	}
}

