body{
font-family: Arial;
margin:0;
}

header{
background:#0b3d91;
color:white;
padding:15px;
}

nav a{
color:white;
text-decoration:none;
}

nav{
margin-right:50px; /* <-- Move the entire menu slightly to the left */
}

.hero{
background:#f4f4f4;
padding:100px;
text-align:center;
}

.cta{
background:#0b3d91;
color:white;
padding:60px;
text-align:center;
}

footer{
background:#111;
color:white;
text-align:center;
padding:20px;
}

.logo{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}

.logo-main{
  font-size:28px;
  font-weight:700;
  color:#ffffff;
  letter-spacing:1px;
}

.logo-sub{
  font-size:13px;
  font-weight:400;
  color:#ffffff;
  opacity:0.9;
}

.contact-section{
    display: flex;
    justify-content: space-between;
    gap: 40px;
    background-color: #0a1f44;
    padding: 40px;
    border-radius: 10px;
    color: white;
}

/* Contact Form */
.contact-form{
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea{
    margin-bottom: 15px;
    padding: 10px;
    border: none;
    border-radius: 5px;
}

.contact-form button{
    padding: 12px;
    background: white;
    color: #0d6efd;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
}

/* Contact Details */
.contact-details{
    flex: 1;
}

.contact-details h3{
    margin-bottom: 10px;
}

.header-contact{
  font-size:13px;
  color:white;
  margin-left:20px;
}

body{
    background:#243755;
    margin:0;
    font-family: 'Share Tech Mono', monospace;
    -webkit-font-smoothing:antialiased;
}

.header{
    display:flex;
    align-items:center;
    padding:18px 45px; /* smaller top-bottom padding */
}

/* Left logo section */
.logo-area{
    display:flex;
    align-items:center;
    gap:5px;
}

/* Logo image */
.brand-logo{
    height:45px;
    width:auto;
}

/* Brand text */
.brand{
    font-size:28px;
    letter-spacing:3px;
    color:transparent;
    -webkit-text-stroke:2px #ffffff;
    font-weight:600;
    line-height:1.1;
    text-shadow:0 0 8px rgba(255,255,255,0.4);
}


/* Tagline */
.tagline{
    font-size:12px;
    letter-spacing:1px;
    color:#d7df00;
    margin-top:4px;
    line-height:1;
}

/* Navigation */
.header-nav{
    margin-left:20px;
    display:flex;
    gap:20px;
}

/* Nav links */
.header-nav a{
    text-decoration:none;
    color:white;
    font-size:16px;
    font-weight:500;
}

.solutions{
background:#f4f7fb;
padding:80px 8%;
}

.about{
background:#f4f7fb;
padding:80px 8%;
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
}

.contact{
background:#f4f7fb;
padding:60px 8%;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: 40px; /* <-- moves the logo slightly right */
}

section#services h2 {
  font-size:28px !important;  /* force the size */
  margin-top:40px;
}

.solutions h2{
margin-top:40px;
}
.contact h2{
margin-top:40px;
}
section#about h2{
  font-size:28px !important;  /* force the size */
  margin-top:40px;
}
.about-image img{
margin-top:40px;

}
/* MOBILE RESPONSIVE FIX */

@media (max-width:768px){

/* Header layout */
.header{
flex-direction:column;
align-items:flex-start;
gap:10px;
}

/* Hide phone/email on very small screens */
.header-contact{
font-size:12px;
margin-left:0;
}

/* Navigation */
nav{
display:flex;
flex-wrap:wrap;
gap:10px;
margin-top:10px;
}

nav a{
margin-left:0;
font-size:14px;
}

/* Hero section */
.hero{
height:auto;
padding:80px 20px;
text-align:left;
}

.hero h1{
font-size:28px;
}

.hero p{
font-size:15px;
}

/* About section */
.about{
grid-template-columns:1fr;
padding:50px 20px;
}

/* Services */
.services{
padding:50px 20px;
}

/* Solutions */
.solutions{
padding:50px 20px;
}

/* Contact section */
.contact-section{
flex-direction:column;
padding:25px;
gap:30px;
}

/* Stats */
.stats{
flex-direction:column;
gap:25px;
}

/* Footer */
footer{
padding:25px 15px;
}

}
