:root{
  --nav-color: #375689;
  --text-deep: #03045E;
  --accent: #375689;
  --muted-bg: #EFF2F7;
  --page-max-width: 1789px;
}

/* Reset */
*{box-sizing:border-box;margin:0;padding:0}
html,body{height:100%}
body{
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color: var(--text-deep);
  background: white;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  display:flex;
  justify-content:center;
}

.page {
  width:100%;
  max-width:var(--page-max-width);
  padding:40px 60px;
  background-color:;
}

/* Header */
header {
  text-align:center;
  margin-bottom:22px;
}
.brand {
  font-family: "Maitree", serif;
  font-weight:400;
  font-size:100px;
  color: var(--text-deep);
  margin-bottom:8px;
}

/* Nav */
nav {
  display:flex;
  justify-content:center;
  border-top:2px solid #2b3b6a;
  border-bottom:2px solid #2b3b6a;
  padding:15px 0;
  margin-bottom: 3%;
}
nav a {
  font-family: "Maitree", serif;
  color: var(--nav-color);
  text-decoration:none;
  margin:0 26px;
  font-size:23px;
  transition: all .15s ease;
}
nav a:hover {
  font-weight:700;
  text-decoration: underline;
}

/* Hero */
.hero {
  display:flex;
  gap:70px;
  align-items:flex-start;
  margin:34px 0 60px;
}

.heroicons img{
 width: 30px;
 height: 30px;
}
.hero-left{ flex:1; min-width:560px; }
.intro-small {
  font-family:"Poppins";
  font-weight:600;
  font-size:18px;
  margin-bottom:10px;
}
.hero-title {
  font-family:"Poppins";
  font-weight:900;
  font-size:70px;
  line-height:1;
  margin-bottom:10px;
}
.hero-desc {
  max-width:520px;
  margin-bottom:18px;
  font-size: 21px;
}
.hero-buttons {
  display:flex;
  gap:14px;
  margin-top:18px;
}
.btn {
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 18px;
  border:2px solid #2b3b6a;
  border-radius:6px;
  font-family:"Poppins";
  background:white;
  color:var(--text-deep);
  text-decoration:none;
}
.btn:hover{ font-weight:700; background-color:#03045E;color: #fff; }

.hero-right{ width:330px; flex:0 0 350px; transform:rotate(-5deg);box-shadow:10px 10px 20px rgba(0,0,0,0.03) }
.portrait { border:; padding:8px; width:100%; }
.portrait img{ width:100%; display:block; }

/* Skills */
.section { 
margin:80px 0; 
background-color: ;
}




 
.section-title {
  font-family:"Poppins";
  font-weight:900;
  font-size:54px;
  margin-bottom:30px;
  line-height: 1.5;
}
.skills-grid {
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  max-width:920px;
}
.skill {
  border:2px solid #d6dff0;
  padding:16px 22px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  min-width:180px;
  justify-content:center;
  border-radius:6px;
  cursor:pointer;
  background:white;
}
.skill:hover{
  transform:translateY(-4px);
  border-color:var(--nav-color);
  font-weight:700;
  text-decoration:underline;
}
.skillicon img{
  width: 30px;
  height: 30px;  
}

/* Testimonials */
.section testimonials{
	background-color: ##F4F4F4;
}
.testimonials { margin-top:30px;}
.test-title {
  font-family:"Poppins";
  font-weight:900;
  font-size:54px;
  margin-bottom:26px;
}
.test-list { display:flex; gap:80px; }
.testimonial { width:320px; }
.polaroid {
  width:269px;
  height:313px;
  padding:12px;
  border:2px solid #03045E;
  margin-bottom:12px;
  background:white;
  
  
}
.polaroid img{
  width:239px;
  height:244px;
  object-fit:cover;
  display:block;
  
  
}
.testimonial .name {
  font-weight:700;
  margin-bottom:8px;
}
.testimonial p { font-size:14px; line-height:1.4; }

/* Case studies */
.case-title {
  font-family:"Poppins";
  font-weight:900;
  font-size:57px;
  margin:48px 0 24px;
}
.case-list { display:flex; gap:32px; }
.case-item{
  width:300px;
  border:2px solid #03045E;
  padding:12px;
  cursor:pointer;
  transition:transform .12s ease;
}
.case-item:hover{ transform:translateY(-6px); }
.case-item img{ width:100%; height:220px; object-fit:cover; margin-bottom:8px; }
.case-item {
  position: relative;
  overflow: hidden;
}

.case-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin-bottom: 8px;
  transition: opacity 0.4s ease;
  display: block;
}

/.case-list {
  display: flex;
  justify-content: flex-start; /* keeps them aligned left */
  gap: 20px; /* space between cards */
  flex-wrap: wrap; /* allows stacking on smaller screens */
}

.case-item {
  flex: 0 0 300px; /* fixed width cards */
  border: 1px solid #1a1a40;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

/* lift + shadow effect */
.case-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* image wrapper handles hover swap */
.img-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  margin-bottom: 8px;
  overflow: hidden;
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.4s ease;
}

.img-wrapper img.hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.case-item:hover .img-wrapper img.default {
  opacity: 0;
}

.case-item:hover .img-wrapper img.hover {
  opacity: 1;
}

/* caption spacing */
.case-item .dpwh,
.case-item .caption {
  padding: 0 8px 12px 8px;
}


/* Contact form */
.contact-cta { margin:72px 0 40px; background-color:; }
.contact-title {
  font-family:"Poppins";
  font-weight:900;
  font-size:57px;
  margin-bottom:12px;
  
}
.contact-sub { margin-bottom:18px; }
.contact-wrap {
  border:1px solid #03045E;
  padding:48px;
  max-width:655px;
  height:770px;
}
.form-label {
  font-family:"Maitree";
  font-weight:500;
  font-size:20px;
  margin-bottom:12px;
  display:block;
}

.form-input {
  width:972px;
  max-width:100%;
  height:85px;
  border:1px solid #03045E;
  padding:18px;
  font-family:"Maitree";
  font-size:20px;
  opacity:0.3;
  margin-bottom:26px;
}
.form-textarea {
  width:972px;
  max-width:100%;
  height:250px;
  border:1px solid #03045E;
  padding:22px;
  font-family:"Maitree";
  font-size:20px;
  opacity:0.3;
  resize:vertical;
  margin-bottom:26px;
}
.submit {
  padding:12px 22px;
  border-radius:10px;
  background:var(--nav-color);
  color:white;
  font-family:"Poppins";
  font-weight:600;
  border:none;
  cursor:pointer;
}

/* Footer */
footer {
  margin-top:60px;
  background:var(--muted-bg);
  padding:36px 60px;
  
  
}
.footer-container {
  max-width:var(--page-max-width);
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  gap:20px;
  
}
.footer-col { width:30%; min-width:200px;}
.footer-title {
  font-family:"Poppins";
  font-weight:700;
  text-decoration:underline;
  margin-bottom:16px;
  
}

.location img {
	width: 16px;
	height: 20px;
}

.envelope img {
	width: 18px;
	height: 15px;
}

.footer-phone img {
	width: 18px;
	height: 20px;
}
footer a { display:block; margin-bottom:8px; color: #375689;}

/* Create underline using ::after */
footer a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px; /* Slightly below text */
  width: 0%;
  height: 2px;
  background-color: #03045E;
  transition: width 0.3s ease;
}

/* On hover */
footer a:hover,
footer a:focus {
  color: #03045E;
}
.footer-bottom {
  background-color: #375689;
  text-align: center;
  padding: 12px 0;
  margin-top: 0px;
}

.footer-bottom p {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  margin: 0;
  letter-spacing: 0.5px;
}


footer a:hover::after,
footer a:focus::after {
  width: 100%; /* Expands underline smoothly */
}

/* Responsive */
@media (max-width:1200px){
  .hero { flex-direction:column; gap:28px; }
  .hero-left{min-width:unset}
  .hero-title{font-size:62px}
  .section-title{font-size:48px}
  .contact-wrap { height:auto; padding:36px; }
  .form-input{height:84px; font-size:20px}
  .form-textarea{height:220px; font-size:20px}
 
}

@media (max-width:720px){
  .brand{font-size:56px}
  nav a{margin:0 12px}
  .hero-title{font-size:42px}
  .section-title{font-size:42px}
  .test-list{flex-direction:column}
  .case-list{flex-direction:column}
  .footer-container{flex-direction:column}
  .footer-col{width:100%;}
}
