/* General Reset and Base Styles */
body {
margin: 0;
font-family: 'Segoe UI', sans-serif;
color: #222;
background-color: #ffffff;
line-height: 1.6;
}

a {
text-decoration: none;
color: inherit;
}

.mobile-hero {
display: none;
}

/* Hamburger Nav Base */
#menu-toggle {
display: none;
}

.hamburger {
display: none;
font-size: 28px;
cursor: pointer;
padding: 10px;
}

/* Base nav style stays horizontal */
.nav-links {
display: flex;
gap: 30px;
list-style: none;
margin: 0;
padding: 0;
}

/* Navbar */
.navbar {
background-color: #fbfaff;
position: sticky;
top: 0;
z-index: 1000;
margin: 0 auto;
align-items: center;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* Grid container for navbar content */
.container {
max-width: 1200px;
margin: 0 auto;
width: 100%;
display: grid;
grid-template-columns: 1fr auto;
align-items: center;
}
nav .nav-right form {
all: unset;
display: contents;
}

.nav-right ul {
display: flex;
gap: 30px;
list-style: none;
margin-right: -25px;
padding: 0;
}

.nav-right a {
font-weight: 600;
text-decoration: none;
color: #000;
font-size: 20px;
}

.logo {
font-size: 28px;
font-weight: bold;
color: #2c2c2c;
margin-top: 4px;
margin-left: -25px;
}

.logo img {
height: 40px;
max-width: 160px;
padding: 10px 0; 
width: auto;
display: block;
}

nav ul {
display: flex;
list-style: none;
gap: 30px;
margin: 0;
padding: 0;
}

nav a {
font-weight: 600;
}

/* Hero Section */
/*.hero-banner.contained-hero {
background: url("images/hero.jpg") no-repeat center top;
background-size: contain;
background-color: #ffffff;
height: 700px;
display: flex;
align-items: center;
justify-content: flex-start;
padding-left: 5%;
padding-right: 5%;
position: relative;
color: #000;
align-items: center; 

}*/

.hero-banner.contained-hero {
background: url("images/hero1.jpg") no-repeat center center;
background-size: cover; 
background-color: #ffffff;
height: 700px;
display: flex;
align-items: center;
justify-content: flex-start;
width: 100%;
position: relative;
color: #000;
}

.hero-text {
padding: 40px 0;
max-width: 600px;
z-index: 1;
}

.hero-text h1 {
font-size: 2.75rem;
line-height: 1.2;
color: #4a38ae;
}

.hero-text p {
font-size: 1.6rem;
margin-top: 15px;
}

.btn-primary {
background-color: #4a38ae;
color: white;
padding: 12px 24px;
border-radius: 25px;
font-weight: bold;
display: inline-block;
transition: background 0.3s ease;
box-shadow: 0 4px 10px rgba(74, 56, 174, 0.2); /* subtle purple shadow */
transition: all 0.3s ease;
}

.btn-primary:hover {
background-color: #4727ad;
box-shadow: 0 6px 14px rgba(74, 56, 174, 0.3);
transform: translateY(-1px);
}

.hero-image {
flex: 1 1 50%;
max-width: 100%;
align-items: center;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.hero-image img {
width: 100%;
height: auto;
display: block;
border-radius: 12px;
object-fit: cover;
align-items: center;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* Introduction Paragraph */
.intro-wrapper {                    
position: relative;
}

.intro-background {
background-color: #e9e6f1;
padding: 120px 0px;
align-items: center;
margin: 0 auto;  
}

.intro-container {
margin: 0 auto;
width: 100%;
align-items: center;	
}

.intro {
max-width: 50rem;
margin: 0 auto;
font-size: 1.6rem;
line-height: 1.6;
color: #2c2c2c;
}

.intro p {
font-size: 1.4rem;
color: #2c2c2c;
margin: 0;
text-align: left;
}

/* Services Section */

.service-wrapper {
display: flex;                    
position: relative;
}

.service-background {
background-color: #f7f5fb;
width: 100%;
padding: 40px 0px;
align-items: center;
}

.service-container {
margin: 0 auto;
max-width: 1200px; 
align-items: center;
}

.services h2 {
text-align: center;
margin-bottom: 40px;
font-size: 28px;
}

.service-card {
display: flex;
flex-direction: row;
align-items: flex-start;
gap: 40px;
margin-bottom: 60px;
max-width: 1000px;
margin-left: auto;
margin-right: auto;
background: transparent; 
}

.service-card img {
width: 300px;
height: auto;
object-fit: cover;
flex-shrink: 0;  
}

.shadow-photo{
display: block;
max-width: 100%;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); 
}	

.service-card div {
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
max-width: 600px;
}

.service-card h3 {
margin: 0;
font-size: 22px;
}

.service-card p {
margin-top: 10px;
font-size: 1.2rem;
line-height: 1.6;
}

.service-cta {
text-align: center;
padding: 60px 20px;
}

.btn-secondary {
background-color: #4a38ae;
color: white;
padding: 14px 24px;
border-radius: 25px;
font-weight: bold;
font-size: 16px;
display: inline-block;
transition: background 0.3s ease;
border: none;
outline: none;
cursor: pointer;
box-shadow: 0 4px 10px rgba(74, 56, 174, 0.2); 
transition: all 0.3s ease;
}

.btn-secondary:hover {
background-color: #4727ad;
box-shadow: 0 6px 14px rgba(74, 56, 174, 0.3);
transform: translateY(-1px);
}
/* Services Page*/
/*.service-banner-container{
background-color: #f7f5fb;
max-width: 1200px;
margin: 0 auto;
width: 100%;
align-items: center;

}*/

.service-banner-container {
background-color: #f7f5fb;
width: 100%; 
padding: 20px 0; 
}

.service-banner-inner {
max-width: 1200px;
margin: 0 auto;
padding: 0 40px; 
} 

.services-grid{
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
align-items: center;
max-width: 1000px;
margin: 0 auto;
padding-top: 80px;
padding-bottom: 80px;
}

.services-text h2 {
font-size: 2.5rem;
color: #4a38ae;
margin-bottom: 15px;
}

.services-text p {
max-width: 500px;
font-size: 1.6rem;
line-height: 1.6;
color: #2c2c2c;
}
.service-card ul {
font-size: 1.2rem;
line-height: 1.6;
color: #2c2c2c;
margin: 10px 0 20px;
padding-left: 20px;
}

.services-image img {
width: 100%;
object-fit: cover;
}

.icon {
width: 150px !important; 
height: auto;
object-fit: contain;
}

/* About Page */

.about-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
align-items: center;
max-width: 1000px;
margin: 0 auto;
padding-top: 80px;
padding-bottom: 80px;
}

.about-text h2 {
font-size: 2.5rem;
color: #4a38ae;
margin-bottom: 15px;
}

.about-text p {
max-width: 500px;
font-size: 1.6rem;
line-height: 1.6;
color: #2c2c2c;
}

.about-image img {
width: 100%;
object-fit: cover;
}

.about-banner-container {
background-color: #f7f5fb;
width: 100%;
padding: 20px 0;
}

.about-banner-inner {
max-width: 1200px;
margin: 0 auto;
padding: 0 40px;
}

.about-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
align-items: center;
max-width: 1000px;
margin: 0 auto;
padding-top: 80px;
padding-bottom: 80px;
}

.about-content {
max-width: 700px;
margin: 40px auto 0;
padding: 40px 80px;
}

.about-body .container {
max-width: 1200px;
margin: 0 auto;
padding-top: 60px;
width: 100%;
align-items: center;
}

.about-content p {
font-size: 1.1rem;
color: #222;
line-height: 1.8;
margin-bottom: 30px;
}
.intro p {
font-size: 1.4rem;
color: #2c2c2c;
margin-bottom: 24px; 
text-align: left;
}

/* contact page*/

.contact-hero {
background-color: #e9e6f1;
padding: 50px 0;
max-width: 100%;
padding-bottom: 100px;
}

/*.contact-grid {
display: grid;
grid-template-columns: 2fr 1fr;
gap: 60px;
max-width: 1000px;
margin: 0 auto;
padding: 0 40px;
}*/

.contact-grid {
display: flex;
flex-direction: column;
padding: 0 16px;
gap: 30px;
max-width: 1200px;
margin: 0 auto;
padding-left: 40px;
padding-right: 40px;
}

/*.contact-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
padding: 0 6%;
}*/

.contact-left h1 {
font-size: 2.75rem;
line-height: 1.2;
color: #000;
font-family: 'Segoe UI', sans-serif;
font-weight: 600;
margin-bottom: 40px;
}

.contact-left .highlight {
color: #4a38ae;
font-family: 'Segoe UI', sans-serif;
font-weight:  800;
}

/*.contact-left form {
display: flex;
flex-direction: column;
}*/

/*.contact-left h3 {
font-size: 1.2rem;
margin-bottom: 0px;
}*/

/*.contact-left label {
font-weight: 600;
margin: 10px 0 0px;
}

.contact-left input,
.contact-left textarea {
padding: 10px;
border: 1px solid #ffffff;
border-radius: 4px;
font-size: 1rem;
font-family: inherit;
background-color: #ffffff;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); /* ✅ soft shadow 
transition: box-shadow 0.3s ease;
}*/
/*.contact-left input:focus,
.contact-left textarea:focus {
outline: none;
box-shadow: 0 0 0 3px rgba(74, 56, 174, 0.2); /* subtle focus glow 
}

.contact-left textarea {
resize: vertical;
}

.contact-left button {
margin-top: 20px;
align-self: flex-start;

}*/

/*.contact-right {
padding-top: 240px;
padding-left: 60px;
}*/

.contact-right p {
font-size: 1rem;
line-height: 1.8;
margin-bottom: 5px;
margin-top: 10px;
}

.contact-right strong {
font-weight: bold;
}

.contact-left,
.contact-right {
text-align: left;
}

/*.form-response {
display: none;
margin-top: 20px;
padding: 12px 20px;
background-color: white;
color: #4a38ae;
border-radius: 6px;
font-weight: 600;
font-size: 1rem;
}*/
/* Privacy and Terms*/
.legal-section {
}

.legal-wrapper{
background-color: #e9e6f1;
width: 100%;
padding: 100px 0; 
}

.legal-content {
max-width: 1200px;
margin: 0 auto;
padding: 0 40px;
}

.legal-content p {
max-width:40rem;
}
	

/* Footer*/

.site-footer {
font-size: 0.95rem;
align-items: center;
}

.footer-wrapper {
background-color: #fbfaff;
align-items: center;
width: 100%;
margin: 0 auto;
}

.footer-inner-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 40px;
}


.footer-top {
display: flex ;
flex-direction: row ;
justify-content: space-between;
align-items: flex-start;
flex-wrap: wrap;
padding-top: 40px;
margin-bottom: 30px;
}

.footer-left {
width: auto ;
text-align: left;
}

.footer-right {
width: auto ;
text-align: right;
}

.footer-left img {
height: 60px;
margin-bottom: 10px;
}

.footer-left p {
margin: 0;
font-size: 1rem;
line-height: 1.4;
}

.footer-left strong {
font-weight: 700;
}

.footer-right p {
margin: 0 0 10px;
}


.footer-bottom {
border-top: 1px solid #ccc;
padding-top: 20px;
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}

.footer-links a {
margin-left: 20px;
color: #222;
text-decoration: none;
}

.footer-links a:hover {
text-decoration: underline;
}
.footer-left img {
height: 40px;
max-width: 120px;
width: auto;
display: block;
}



/* Responsive Design */
@media (max-width: 768px) {
	.hamburger {
	 display: block;
	}

	#navLinks{
	 display: none;
	}

	.nav-links {
	display: none;
	flex-direction: column;
	background-color: #fbfaff;
	position: absolute;
	top: 72px;
	right: 6%;
	width: 220px;
	padding: 16px;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
	z-index: 1001;
	border-radius: 8px;
	}
	.nav-links {
	flex-direction: column;
	}

	.nav-links li {
	margin-bottom: 0px; 
	}

	.nav-links li:first-child {
	margin-top: 16px; 
	}

	.nav-links li:last-child {
	margin-bottom: 16px; 
	}

	.nav-links a {
	padding: 0 14px;  
	display: block;
	font-weight: 600;
	font-size: 16px;
	}

	.nav ul {
	flex-direction: column;
	gap: 10px;
	}

	.logo img {
	height: 40px;
	max-width: 140px;
	padding-left: 40px;
	}

	.desktop-hero {
	display: none !important;
	}

	.intro-wrapper {
	  display: none;
	}

	.mobile-hero {
	display: block;
	align-items: center;
	padding-left: 20px;
	padding-right: 20px;
	padding-bottom: 40px;
	padding-top: 40px;
	background-color: #e9e6f1;
	}

	.mobile-hero-inner {
	max-width: 600px;
	margin: 0 auto;
	padding: 0 8px; 
	display: flex;
	flex-direction: column;
	gap: 20px;
	}

	.mobile-hero-subpage-inner {
	width: 100%;
	max-width: 600px; 
	margin: 0 auto;
	padding: 0 8px; 
	padding-bottom: 40px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	/*box-sizing: border-box;*/ 
	/*text-align: center;*/
	}
	.mobile-hero-heading {
	position: relative;
	}

	.mobile-hero-heading h1 {
	font-size: 40px;
	font-weight: 700;
	color: #4a38ae;
	line-height: 1.4;
	margin: 0;
	}

	.hero-icon {
	position: absolute;
	left: 185px;
	bottom: 5px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	object-fit: cover;
	}

	#hero-services-circle {
	position: absolute;
	left: 230px;
	top: 110px;
	bottom: 5px;
	width: 50px;
	height: 50px;
	}

	#hero-about-circle {
	position: absolute;
	left: 200px;
	top: 105px;
	bottom: 5px;
	width: 50px;
	height: 50px;
	}

	.cta-button {
	width: fit-content;
	background-color: #4a38ae;
	color: white;
	padding: 8px 24px;
	border-radius: 24px;
	font-weight: 700;
	font-size: 18px;
	text-decoration: none;
	margin-bottom: 40px;
	text-align: center;
	/* margin-left: 69px;
	margin-right: 69px;*/
	}  

	.hero-subtext {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 24px;
	color: #333;
	}

	.hero-subpage-subtext {
	font-size: 20px;
	font-weight: 700;
	margin: 0;
	color: #000;
	}

	.hero-intro {
	max-width: 600px;
	font-size: 16px;
	line-height: 1.6;
	color: #222;
	padding: 0 8px;
	}

	.service-wrapper {
	padding: 0;
	}

	.service-container {
	max-width: 600px;
	}

	.service-container h2 {
	text-align: center;
	font-size: 28px;
	margin-bottom: 40px;
	}

	.service-background {
	padding: 40px 20px;
	}

	.service-card {	
	display: flex !important;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 40px;
	} 

	.service-title {
	padding-left:8px;
	padding-bottom: 20px;
	}
	
	.service-card {
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.service-card img {
  display: none;
}
/*.service-card img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

/*	#it-management-photo{
	position: absolute;
	top: 135px;
	left: 30px;
	bottom: 5px;
	width: 50px;
	height: 50px;
	}

	#cybersecurity-photo{
	position: absolute;
	top: 470px;
	left: 30px;
	bottom: 5px;
	width: 50px;
	height: 50px;
	}

	#hardware-photo{
	position: absolute;
	top: 820px;
	left: 30px;
	bottom: 5px;
	width: 50px;
	height: 50px;
	}
	#it-management-icon {
	position: absolute;
	top: 160px;
	left: 30px;
	bottom: 5px;
	width: 50px;
	height: 50px;
	}

	#cybersecurity-icon{
	position: absolute;
	top: 745px;
	left: 30px;
	bottom: 5px;
	width: 50px;
	height: 50px;
	}

	#hardware-icon{
	position: absolute;
	top: 1420px;
	left: 30px;
	bottom: 5px;
	width: 50px;
	height: 50px;
	}

	.shadow-photo {
	border-radius: 50%;
	object-fit: cover;
	}
	.icon {
	width: 50px !important;
	height: 50px;
	/*border-radius: 50%;*/

	object-fit: cover;
	}

	.service-header h3 {
	font-size: 20px;
	font-weight: 700;
	margin: 0;
	color: #000;
	}

	.service-card p  {
	max-width: 600px;
	font-size: 16px;
	line-height: 1.6;
	color: #222;
	padding: 0 8px;
	margin: 0;
	}
	
	ul,
	ul li {
	font-size: 16px;
	line-height: 1.6;
	color: #222;
	margin-left: 20px; 
	margin-bottom: 8px;
	}

	.mobile-about-content {
	  padding: 0;
	  margin: 0;
	  
	}
	.mobile-about-content p {
	max-width: 600px;
	font-size: 16px;
	line-height: 1.6;
	color: #222;
	padding: 0 8px;
	margin-bottom: 24px;
	}

	.contact-hero {
	  padding: 40px 20px;
	}

/*	.contact-grid {
	grid-template-columns: 1fr;
	padding: 0;
	}*/

	.contact-grid {
	display: flex;
	flex-direction: column;
	padding: 0 16px;
	gap: 30px;
	}
	.contact-left {
	width: 100%;
	text-align: left;
	}

	.contact-right {
	width: 100%;
	text-align: left;
	}

	.contact-left h1 {
	font-size: 2rem;
	margin-top: 0;
	}
	.contact-right {
	padding-top: 0px;
	padding-left: 0px;
	}*/
	
	.legal-wrapper{
	background-color: #e9e6f1;
	width: 100%;
	padding: 30px 0; 
	}
	.legal-content {
	padding:0,
	}
	
	.footer-inner-container {
	padding-left: 30px;
	}
	.footer-top {
	flex-direction: column;
	gap: 20px;
	text-align: left;
	}
	.footer-left,
	.footer-right {
	text-align: left;
	width: 100%;
	}

	.footer-bottom {
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 10px;
	}

	.footer-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 10px;
	margin-bottom: 20px;
	gap: 10px;
	}

	.footer-links a {
	margin: 0;
	font-size: 14px;
	white-space: nowrap;
	} 
}
