body{
margin:0;
font-family:'Open Sans', sans-serif;
color:#25272f;
}

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 40px;
background:#25272f;
color:white;
}

nav a{
margin-left:25px;
color:white;
text-decoration:none;
}

.hero{
height:80vh;
background:url('../images/hero.jpg') center/cover;
display:flex;
align-items:center;
justify-content:center;
color:white;
text-align:center;
}

.hero h1{
font-family:Montserrat;
font-size:48px;
}

.btn{
background:#0093e0;
color:white;
padding:12px 25px;
text-decoration:none;
display:inline-block;
margin-top:20px;
}

.services{
padding:20px;
background:#f5f5f5;
text-align:center;
}

/* Service cards */
.service-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:30px;
  margin-top:40px;
}

.service{
  background:#f5f5f5;
  padding:25px;
  border-radius:10px;
  box-shadow:0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service:hover{
  transform:translateY(-5px);
  box-shadow:0 10px 20px rgba(0,0,0,0.15);
}

.service i{
  font-size:40px;
  color:#0093e0;
  margin-bottom:15px;
}

.service h3{
  font-family:'Montserrat', sans-serif;
  margin-bottom:10px;
}

.service p{
  font-size:16px;
  color:#25272f;
}

.projects{
padding:20px;
text-align:center;
}

.projects-home{
padding:10px;
text-align:center;
background: #90969b;
}

.project-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:10px;
}

.project-grid img{
width:100%;
}

.cta{
background:#1e1e1e;
color:white;
text-align:center;
padding:20px;
}

footer{
background:#111;
color:white;
text-align:center;
padding:5x;
}

.footer-social a{
color:white;
margin:5px;
font-size:24px;
}

.menu-toggle{
display:none;
font-size:24px;
cursor:pointer;
}

/* Mobile layout */

@media (max-width:768px){

nav{
display:none;
flex-direction:column;
background:#1e1e1e;
position:absolute;
top:70px;
left:0;
width:100%;
padding:20px;
}

nav a{
margin:10px 0;
}

nav.active{
display:flex;
}

.menu-toggle{
display:block;
}

}

/* Logo image styling */
.logo img {
  height: 50px; 
  width: auto;
  display: block;
}

/*  make logo smaller on mobile */
@media (max-width:200px){
  .logo img {
    height: 30px;
  }
}

/* WhatsApp button styling */
.whatsapp-btn {
  display: inline-block;
  background: #02c03b;
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: background 0.3s;
}

.whatsapp-btn i {
  margin-right: 8px;
  font-size: 18px;
  vertical-align: middle;
}

.whatsapp-btn:hover {
  background: #0093e0;
}

/* Contact Page */
.contact{
  background:#f5f5f5;
  padding:80px 20px;
  font-family:'Open Sans', sans-serif;
  text-align:center;
}

.contact-container{
  max-width:600px;
  margin:auto;
}

.contact h1{
  font-family:'Montserrat', sans-serif;
  font-size:36px;
  margin-bottom:30px;
}

.contact p{
  font-size:18px;
  margin-bottom:15px;
}

.contact a{
  color:#25272f;
  text-decoration:none;
  font-weight:bold;
}

.contact a:hover{
  text-decoration:underline;
}

.footer-credit {
  font-size: 12px;
  opacity: 0.7;
}


footer {
  background: #25272f;
  color: #ccc;
  text-align: center;
  padding: 40px 20px;
  margin-top: 0px;
}

/* Social icons container */
.footer-social {
  margin-bottom: 20px;
}

/* Icon links */
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  margin: 0 8px;

  background: #25272f;
  color: white;

  border-radius: 50%;
  font-size: 18px;

  text-decoration: none;
  transition: all 0.3s ease;
}

/* Hover animation */
.footer-social a:hover {
  background: #0093e0; /* accent colour */
  transform: translateY(-4px);
}

/* Footer text */
footer p {
  margin: 6px 0;
  font-size: 14px;
  color: #aaa;
}


/* Section styling */
.testimonials {
  padding: 60px 20px;
  background: #f0f0f0; /* light gray behind the boxes */
  text-align: center;
}

.testimonials h2 {
  margin-bottom: 40px;
  font-size: 28px;
  color: #111;
}

/* Testimonial grid */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* Individual testimonial box */
.testimonial {
  background-color: #0093e0; /* solid blue */
  color: white;
  padding: 25px 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-5px); /* subtle lift on hover */
}

/* Testimonial text */
.testimonial p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 15px;
}

/* Client name */
.testimonial h4 {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.9;
}

.testimonial p::before {
  content: "“";
  font-size: 28px;
  vertical-align: top;
  margin-right: 5px;
}

.testimonial p::after {
  content: "”";
  font-size: 28px;
  vertical-align: bottom;
  margin-left: 5px;
}