

.hero-bg{
  position:relative;
  background:url("gz2.jpg") no-repeat center center/cover;
  min-height:480px;
  display:flex;align-items:center;
  color:white;
}
.hero-bg .overlay{
  background:rgba(0,0,0,0.55);
  width:100%;height:100%;
  display:flex;align-items:center;
}
.hero-bg .container{
  text-align:center;
}


.hero-bg h1{
  font-size:clamp(28px,5vw,48px);
  font-weight:800; 
  margin-bottom:12px;
  color:#fff;

  margin-left: auto;
  margin-right: 0;  /* pushes it fully right */
  display: block;   /* makes sure auto margin works*/
 text-align:right;   
 
   
}


.hero-bg p{max-width:700px;margin:0 auto 20px;color:#f0f0f0}



.header {
  position: sticky;
  color:white;
  top: 0;
  z-index: 50;
  background: rgba(11,43,89,0.9); /* navy with transparency */
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  min-height: 100px; /* enough space for the 200px logo */
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: var(--white);
}

.brand img {
  height: 150px;   /* your logo size */
  border-radius: 50%;
  width: auto;
  display: block;
}

.brand span {
  font-weight: 800;
  letter-spacing: 0.4px;
  font-size: 22px;
}

.menu {
  display: flex;
  gap: 180px;
  align-items: center;
}

.menu a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 17px;
  padding: 10px 14px;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.menu a:hover,
.menu a.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}



#about {
  scroll-margin-top: 200px;  /* adjust to your navbar’s height */
    padding-top: 70px;     /* space for nav */
  margin-top: -80px;     /* cancels the layout shift */
}


/* About page layout */
.about-wrap {
  /*background: rgba(11,43,89,0.9);*/
  background-color: white;
  display: grid;
  grid-template-columns: 1fr 1.2fr; /* picture smaller, text larger */
  gap: 0px;
  align-items: center;
color:black;
  margin-top: 40px; 
}


.about-photo {
  width: 100%;
  max-width: 350px;   /* keeps your picture a nice size */
  border-radius: 20px;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.15);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.about-wrap h2 {
  font-size: clamp(22px, 3vw, 28px);
  margin-bottom: 12px;
  font-weight: 800;
  color: var(--gold);
  color:black;
}

.about-wrap p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  
  
}



/* Services page layout */
#services {
  scroll-margin-top: 210px;  /* adjust to your navbar’s height */
    padding-top: 60px;     /* space for nav */
  margin-top: -80px;     /* cancels the layout shift */
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 40px;
}
.service-photo {
  width: 100%;
  max-width: 380px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}
.service-content h2 {
  color: var(--gold);
  margin-bottom: 10px;
  font-size: 22px;
}
.service-content p {
  color: var(--muted);
  line-height: 1.6;
}


#contact  {
  scroll-margin-top: 60px;  /* adjust to your navbar’s height */
    padding-top: 80px;     /* space for nav */
  margin-top: -80px;     /* cancels the layout shift */
}


.contact {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 1rem;
  text-align: center;
}

.contact__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}

.contact__subtitle {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #666;
}

.contact__form {
  display: grid;
  gap: 1.5rem;
}

.form__group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.form__group label {
  margin-bottom: 0.3rem;
  font-weight: 600;
  color: #444;
}

.form__group input,
.form__group textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  outline: none;
}

.form__group input:focus,
.form__group textarea:focus {
  border-color: #111184; /* highlight color */
}

.btn {
  background: #111184;
  color: #fff;
  padding: 0.9rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #0a0a5c;
}


/*Footer section*/

.footer {
  background:rgba(11,43,89,0.9); 
  color: #eee;
  padding: 2rem 1rem;
  text-align: center;
}

.footer__card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.footer__img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%; /* makes it circular like a business card photo */
  border: 3px solid #fff;
}

.footer__info h3 {
  margin: 0 0 0.3rem;
  font-size: 1.3rem;
  color: #fff;
}

.footer__info p {
  margin: 0.2rem 0;
  font-size: 0.95rem;
}

.footer__copy {
  font-size: 0.8rem;
  color: #bbb;
}

.footer p {
  text-align: center;
}



/* Mobile stacking
@media (max-width: 900px) {
  .service-row { grid-template-columns: 1fr; }
  .service-photo { margin: 0 auto 20px; }
  .service-content { text-align: center; }
}*/


/* Mobile*/
@media (max-width: 900px) {
  .service-row { grid-template-columns: 1fr; }
  .service-photo { max-height: none; }
}
 


/* Mobile view stacks picture and text */
@media (max-width: 860px) {
  .about-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-photo {
    margin: 0 auto 20px;
  }
}

.container {
  max-width: 1100px;   /* keeps site readable on desktops */
  margin-inline: auto; /* centers content */
  padding-inline: 16px; /* breathing room on small screens */
}


  /* text scales with screen size */
h1 { font-size: clamp(28px, 5vw, 48px); }
h2 { font-size: clamp(22px, 3.5vw, 32px); }
p  { font-size: clamp(14px, 2vw, 18px); }

/* images never overflow */
img { max-width: 100%; height: auto; display: block; }

/* Two-column layout that stacks on phones */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; text-align: center; }
  .split img { margin: 0 auto 16px; }
}

html {
  scroll-padding-top: 88px; /* equal to your header height */
}
html, body {
  overflow-x: hidden;
}

@media (max-width: 700px){
  .nav{ flex-wrap:wrap }
  .menu{
    width:100%;
    justify-content:center;
    gap:12px;
    padding:6px 0;              /* puts links on their own row */
  }
}