
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,sans-serif;
}
body{
line-height:1.6;
color:#333;
}
.container{
width:90%;
max-width:1200px;
margin:auto;
}
header{
background:#fff;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
position:sticky;
top:0;
z-index:1000;
}
.nav-container{
display:flex;
justify-content:space-between;
align-items:center;
/*padding:10px 0;*/
}
.logo img{
width:220px;
}
.nav-links{
display:flex;
list-style:none;
}
.nav-links li{
margin-left:25px;
}
.nav-links a{
text-decoration:none;
color:#003d8f;
font-weight:bold;
}
.hero{
background:linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),url('../images/banner.jpg') center/cover no-repeat;
height:90vh;
display:flex;
align-items:center;
text-align:center;
color:#fff;
}
.hero h1{
font-size:55px;
margin-bottom:20px;
}
.hero p{
font-size:20px;
max-width:700px;
margin:auto;
}
.btn{
display:inline-block;
margin-top:25px;
background:#0056c7;
color:#fff;
padding:12px 30px;
text-decoration:none;
border:none;
border-radius:5px;
cursor:pointer;
}
.services,.about-content,.contact-section{
padding:70px 0;
}
.services h2,.about-content h2{
text-align:center;
margin-bottom:40px;
color:#003d8f;
}
.service-grid,.mission-vision,.contact-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}
.card{
background:#fff;
padding:30px;
border-radius:10px;
box-shadow:0 4px 10px rgba(0,0,0,0.1);
}
.page-banner{
background:#003d8f;
color:#fff;
text-align:center;
padding:80px 0;
}
.contact-grid form{
display:flex;
flex-direction:column;
}
.contact-grid input,.contact-grid textarea{
padding:12px;
margin-bottom:15px;
border:1px solid #ccc;
border-radius:5px;
}
footer{
background:#001f4d;
color:#fff;
text-align:center;
padding:20px;
}
.menu-toggle{
display:none;
font-size:28px;
cursor:pointer;
}
@media(max-width:768px){
.nav-links{
display:none;
flex-direction:column;
background:#fff;
position:absolute;
top:80px;
right:20px;
width:200px;
padding:20px;
box-shadow:0 4px 10px rgba(0,0,0,0.2);
}
.nav-links.active{
display:flex;
}
.nav-links li{
margin:15px 0;
}
.menu-toggle{
display:block;
}
.hero h1{
font-size:36px;
}
.hero p{
font-size:18px;
}
}



/* Contact Section Base */
.contact-section {
  padding: 60px 0;
  background-color: #f8fafc;
}

/* Single Box Combining Text and Image Side-by-Side */
.combined-contact-box {
  display: flex;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  overflow: hidden; /* Keeps right image cleanly clipped to border radius */
  max-width: 1000px;
  margin: 0 auto;
}

/* Left Content Column */
.contact-details-col {
  flex: 1;
  padding: 45px;
}

.contact-details-col h2 {
  margin-top: 0;
  margin-bottom: 8px;
  color: #003d8f;
  font-size: 30px;
  font-weight: 700;
}

.contact-subtitle {
  color: #64748b;
  font-size: 14px;
  margin-bottom: 28px;
  line-height: 1.5;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
}

/* SVG Icon Wrapper */
.icon-wrapper {
  background-color: #003d8f;
  color: #ffffff;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.icon-wrapper svg {
  width: 20px;
  height: 20px;
}

.contact-text h4 {
  margin: 0 0 3px 0;
  color: #001f4d;
  font-size: 15px;
  font-weight: 600;
}

.contact-text p, 
.contact-text a {
  margin: 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
}

.contact-text a:hover {
  color: #003d8f;
  text-decoration: underline;
}

/* Right Image Column Seamlessly Integrated */
.contact-image-col {
  flex: 1;
  min-height: 100%;
}

.contact-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Mobile Responsive Stacking */
@media (max-width: 768px) {
  .combined-contact-box {
    flex-direction: column;
  }
  
  .contact-details-col {
    padding: 25px;
  }
  
  .contact-image-col {
    height: 250px;
  }
}