html, body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}
/*Website designed and developed by Rocky Konsult Technologies | 2025 */

header {
  background: white;
  color: purple;
  padding: 15px;
  text-align: center;
  width: 100%;
}

header nav a {
  color: purple;
  margin: 0 10px;
  text-decoration: none;
}

.logo-image {
  height: 20px;
  width: 80px;
  vertical-align: middle;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: rgb(155, 49, 155);
  text-decoration: none;
  display: flex;
  align-items: center;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 15px;
  margin-right: 20px;
}

.nav-links li a {
  color: purple;
  text-decoration: none;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: purple;
  margin-right: 20px;
}

.hero {
  position: relative;
  width: 100%;
  height: 80vh; 
  overflow: hidden;
  border: 20px 0 20px 0;
}

.hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* ensures image covers the hero area */
  z-index: -1; /* keep image behind text */
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* perfect centering */
  text-align: center;
  color: white;
  padding: 20px;
  background: rgba(102, 97, 97, 0.3); /* optional: semi-transparent bg for readability */
  border-radius: 8px;
}

.hero-text h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Default (desktop) already covered by your CSS */

/* Tablets and below (max-width: 1024px) */
@media (max-width: 1024px) {
  .hero-text h2 {
    font-size: 2rem; /* slightly smaller heading */
  }

  .hero-text p {
    font-size: 1rem;
    max-width: 80%;
    margin: 0 auto;
  }

  .hero-text button {
    padding: 10px 20px;
    font-size: 1rem;
  }

  .hero-img {
    width: 100%;
    height: 80vh; /* shorter hero on very small screens */
  }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .hero {
    text-align: center;
    padding: 0 15px;
  }

  .hero-text {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
  }

  .hero-text h2 {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .hero-text p {
    font-size: 0.95rem;
  }

  .hero-text button {
    font-size: 0.9rem;
    padding: 8px 16px;
  }

  .hero-img {
    width: 100%;
    height: 50vh; /* shorter hero on very small screens */
  }
}

/* Extra small screens (max-width: 480px) */
@media (max-width: 480px) {
  .hero-text h2 {
    font-size: 1.2rem;
  }

  .hero-text p {
    font-size: 0.85rem;
  }

  .hero-text button {
    width: 100%; /* full-width button for mobile */
    padding: 10px;
  }

  .hero-img {
    width: 100%;
    height: 50vh; /* shorter hero on very small screens */
  }
}


.contact-hero {
    position: relative;
    width: 100%;
    height: 40vh; 
    overflow: hidden;
    background: white;
    color: purple;
    padding: 20px 20px;
    text-align: center;
}
.contact-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.contact-hero p {
  font-size: 1.2rem;
  max-width: 90%;
}   
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* two equal columns */
  gap: 40px;
  padding: 0 20px 40px 20px;
  align-items: start;
}


.contact-direct, 
.contact-info {
  background: #f9f9f9;
  padding: 0 20px 20px 20px;
  border-radius: 8px;
}

.contact-direct h2,
.contact-info h2 {
  color: #4b0082;
  margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form button {
  padding: 12px 25px;
  background: #4b0082;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin: auto;
}

.contact-form button:hover {
  background: #360061;
}

/* Contact info section */
.contact-info-card {
  background: #fff;
  padding: 15px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.contact-info-card h3 {
  margin-bottom: 8px;
  color: #4b0082;
}
.contact-info-card a {
  text-decoration: none;
}

/* Follow Us icons */
.contact-info-card a img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  transition: transform 0.3s ease;
}

.contact-info-card a img:hover {
  transform: scale(1.1);
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr; /* stack into one column */
  }
}
.contact-color1 {
    background-color: lightgray;
}
.view-properties {
  padding: 12px 25px;
  font-size: 1rem;
  color: white;
  background: #4b0082;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.view-properties:hover {
  background: #360061;
}

.contact-us {
  padding: 12px 25px;
  font-size: 1rem;
  color: black;
  background: white;
  border: 1px solid black;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-us:hover {
  background: #360061;
}
/* Responsive tweak */
@media (max-width: 768px) {
  .hero-text h2 {
    font-size: 1.8rem;
  }
  .hero-text p {
    font-size: 1rem;
  }
}

.content {
  padding: 20px;
}

.property-hero {
    position: relative;
  width: 100%;
  height: 55vh; 
  overflow: hidden;
    background: lightgray;
    color: purple;
    padding: 40px 20px 0 20px ;
    text-align: center;
}
.property-hero h1 {
  font-size: 2rem;
  margin-bottom: 10px;
  padding-top: 40px;
}
.property-hero p {
  font-size: 1.2rem;
  max-width: 90%;
    color:#0c0c0c;
}

.propery-opportunity {
    padding: 20px 0 40px 0;
    background: #f9f9f9;
    text-align: center;
}

.property-opportunity h2 {
  margin-bottom: 10px;
  color: purple;
}
.property {
  display: flex;
  gap: 20px;
  padding: 20px;
  justify-content: center;
}

.property-card {
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
  width: 400px;
  margin-bottom: 30px;
  text-align: center;
}

.property-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.opportunity {
  gap: 20px;
  padding: 20px 20px;
  text-align: center ;
  background-color: lightgray;

}
.view-property {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 15px;
  background: purple;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.specialty {
  padding: 40px 20px;
  text-align: center;
}

.specialty h2 {
  margin-bottom: 15px;
  color: #4b0082;
}

.specialty p {
  max-width: 800px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
}

.specialty-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns */
  gap: 20px;
  background: #f4f4f4;
  padding: 30px 20px;
  border-radius: 8px;
}

.specialty-card {
  background: rgb(221, 210, 210);
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.specialty-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.specialty-card img {
  width: 60px;
  height: 60px;
}

.specialty-card h3 {
  margin: 15px 0;
  color: #4b0082;
  font-size: 1.2em;
}

.specialty-card p {
  font-size: 0.95em;
  line-height: 1.5;
}

/* ✅ Responsive Rules */
@media (max-width: 992px) {
  .specialty-list {
    grid-template-columns: 1fr; /* stack 1 per row on tablets & mobile */
  }
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

form input, form textarea, form button {
  padding: 10px;
  font-size: 16px;
}
.footer-color {
    background-color: white;
}   
footer {
    position:relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    color: purple;
    padding: 0 20px 0 20px;
    width: 95%;
    font-size: 14px;
    border-top: 1px solid lightgray;
    border-color: lightgray;
}
.footer-left {
  text-align: left;
}
.footer-center {
  text-align: center;
}
.footer-right ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-right ul li {
  margin-bottom: 2px;
}

.footer-right ul li a {
  display: flex;
  align-items: center;
  color: #410975;
  text-decoration: none;
}

.footer-right ul li a:hover {
  color: purple;
}

.footer-right img {
  width: 15px;
  margin-right: 8px;
}

.footer-left h4, 
.footer-center h4,
.footer-right h4 {
  margin-bottom: 10px;
  color: purple;
}
.footer-right h4 {
  margin-right: 20px;
  color: #0c0c0c;
}

.footer-center h4 {
  color:#0c0c0c
}

.footer-center ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-center ul li {
  margin-bottom: 8px;
}

.footer-center ul li a {
  color: #0f0d0de1;
  text-decoration: none;
}

.footer-center ul li a:hover {
  color: white;
}

.footer-right img {
  width: 24px;
  margin-left: 10px;
}

.footer-bottom {
    text-align: center;
    padding: 0px 0;
    border-top: 1px solid lightgray;
    margin-top: 0;
    font-size: 14px;
    color: blue;
}   
.social img {
  width: 24px;
  margin: 0 5px;
}

/* Responsive */
@media(max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
  }
  .menu-toggle {
    display: block;
  }
  .property-card {
    width: 100%;
  }
}
@media(max-width: 600px) {
  .property-card {
    width: 100%;
  }
}
.about-hero {
    position: relative;
  width: 100%;
  height: 40vh; 
  overflow: hidden;
    background: lightgray;
    padding: 40px 20px 0 20px ;
    text-align: center;
}
.about-hero h1 {
  font-size: 2rem;
  margin-bottom: 10px;
  padding-top: 20px;
  color: purple;
}
.about-hero p {
  font-size: 1.2rem;
  max-width: 90%;
    color:#0c0c0c;
}   

.vision-mission {
  padding: 20px 20px 40px 20px;
  background: #f9f9f9;
  text-align: center;
}

.vision-mission h2 {
  margin-bottom: 10px;
  color: purple;
}

.vision-mission > p {
  margin-bottom: 30px;
  color: #111010;
}

.vision-mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.vision-mission-grid h3 {
    color: #0f0f0fea;
}
.vission-mission-grid p {
    color: #464444bb;
}

.vision, .mission, .excellence {
  background: #fff;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  text-align: center; /* Center text & icon */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vision:hover, .mission:hover, .excellence:hover {
  transform: translateY(-5px);
  box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
}

.vm-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

/* Responsive layout */
@media (max-width: 900px) {
  .vision-mission-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .excellence {
    grid-column: 1 / -1;   /* span across full row */
    justify-self: center; /* center horizontally */
          /* optional: shrink width for balance */
  }
  .opportunity-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;

}
}

@media (max-width: 600px) {
  .vision-mission-grid {
    grid-template-columns: 1fr;
  }
  .opportunity-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;

}
}


.team {
  padding: 40px 20px;
  text-align: center;
}

.team h2 {
  margin-bottom: 15px;
  color: purple;
}

.team-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 20px solid purple;
  border-bottom: 20px solid purple;
}

.team-card {
  width: 400px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.team-card img {
  width: 400px;          /* size of the avatar */
  height: 400px;         /* keep it square */
  border-radius: 50%;    /* makes the image circular */
  object-fit: cover;     /* crops the image nicely inside */
  margin-bottom: 15px;   /* space between image and text */
  border: 3px solid #fff; /* optional: clean border */
  box-shadow: 0 2px 6px rgba(0,0,0,0.2); /* subtle shadow */
}

.team-card h4 {
  margin: 10px 0 5px;
  color: #4b0082;
}

.team-card p {
  font-size: 14px;
  color: #555;
}

.team-card.shade1 {
    background: lightgray;
}
.team-card.shade2 {
    background: white;
}
@media(max-width: 480px) {
  .team-card {
    width: 100%;
  }
  .team-card img {
    width: 100%;
    height: auto; /* maintain aspect ratio */
  }
  .opportunity-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}
}

.properties-contact {
    background: lightgray;
    padding: 40px 20px;
    text-align: center;
}
.properties-contact-text h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: purple;
}

.opportunity-card {
  background-color: lightgray;
  padding: 20px;
  text-align: center;
}

.opportunity-card img {
  margin: 0 auto;
}


.join-us {
    font-size: 1rem;
    margin-bottom: 20px;
  display: inline-block;
  margin-top: 10px;
  padding: 10px 15px;
  background: purple;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.join-us:hover {
  background: #360061;
}

.icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-wrapper img {
  width: 60px;   /* adjust as needed */
  height: 60px;
  object-fit: contain;
}
