*/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

.about-image {
  margin-top: 5%;
}

/* Ribbon Styles */
/* Ribbon Styles */
.ribbon {
  position: fixed;
  width: 100%;
  background-color: rgba(12, 14, 15, 0.95);
  color: white;
  padding: 0.4rem 5%;
  font-weight: bold;
  z-index: 1001;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.ribbon h5 {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

.ribbon .left,
.ribbon .right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Optional: Icon styling */
.ribbon i {
  color: #f5a623;
}


/* Header Styles */
header {
  background-color: rgba(12, 14, 15, 0.9);
  color: white;
  padding: 1rem 5%;
  position: sticky;
  top: 2rem;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Navigation Styles */
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  text-decoration: none;
  color: white;
  padding: 8px 12px;
}

nav ul li a:hover {
  background-color: #444;
  border-radius: 4px;
}

/* Hamburger Menu Icon */
.hamburger {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
}

.hamburger span {
  background-color: white;
  height: 3px;
  width: 100%;
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 7px; }
.hamburger span:nth-child(3) { top: 14px; }

/* Responsive Styles */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 5%;
    background-color: rgba(12, 14, 15, 0.95);
    padding: 1rem;
    width: 200px;
    border-radius: 8px;
  }

  nav ul.active {
    display: flex;
  }

  .social-links {
    display: none; /* Hide or reposition social icons on small screens */
  }
}

.logo {
  margin-right: auto;
}

.menu-icon {
  margin-left: 20px; /* pushes it further to the right */
}


.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-img {
  width: 24px; /* Adjust size as needed */
  height: 24px;
  object-fit: contain;
  background-color: #918070;
}

.logo h1 {
  font-size: 1.2rem;
  color: orange;
  margin: 0;
}

.logo {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}



nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

nav ul li a:hover {
  color: #f5a623;
}

h5 {
  display: flex;
  justify-content: space-between;
  width: 97%;
}

h2 .left,
h2 .right {
  padding: 0 5%;
  margin: 1rem;
}

h2 .left,
h2 .right {
  text-align: left;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .ribbon { display: none; }

  .hamburger {
    display: block;
    position: absolute;
    top: 1rem;
    right: 5%;
  }

header {
  position: relative;
  background-color: #000; /* or any solid color */
  z-index: 10;
  padding: 10px 20px;
}

/* Optional: Add a shadow to visually separate it */
header {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}


  nav ul {
    display: none;
    position: absolute;
    top: 4rem;
    left: 0;
    width: 100%;
    background-color: rgba(12, 14, 15, 0.95);
    padding: 1rem 0;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 999;
  }

  nav ul.active { display: flex; }
}

/* Social Links */
.social-links {
  display: flex;
  gap: 8px;
  position: relative;
}

.social-links a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: #4267B2; /* Facebook brand color */
  border-radius: 50%;
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease;
  position: relative;
}

.social-links a i {
  color: white;
  font-size: 1.2rem;
}

.social-links a:hover {
  background-color: #365899;
  transform: scale(1.1);
}

/* Tooltip */
.social-links a::after {
  content: 'Follow us on Facebook';
  position: absolute;
  bottom: -2rem;
  background-color: #333;
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.social-links a:hover::after {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  header {
    position: relative;
    background-color: #0a0909;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  }
}



/* Home Section */

#home {
  position: relative;
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.521), rgba(0, 0, 0, 0.788)), url('images/image2.jpg') no-repeat center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.hero-content { z-index: 2; }

#home h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.cta-button,
.more-button {
  display: inline-block;
  background-color: #e69500;
  color: white;
  padding: 0.5rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 0.875rem;
  transition: background-color 0.3s;
}

.cta-button:hover { background-color: #f5a623; }
.more-button { background-color: #1a3c5e; }
.more-button:hover { background-color: #123a5a; }

/* About  Section */

#about {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(rgba(252, 249, 249, 0.7), rgba(252, 250, 250, 0.7)), url('images/Group-7310.png') no-repeat center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 3rem 5%;
}

.about-content {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.about-text {
  flex: 1;
  text-align: left;
  background: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about-text:hover {
  transform: translateY(-5px);
}

.about-text h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #1a3c5e;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-text p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
}

.values {
  display: block;
  margin-bottom: 2rem;
}

.values h3 {
  font-size: 1.25rem;
  color: #1a3c5e;
  margin: 1.5rem 0 0.5rem;
  font-weight: bold;
}

.values p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

.button-container {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.more-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #F5A623;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.more-button:hover {
  background-color: #d6931f;
  transform: scale(1.05);
}

.corner-icon {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 1.5rem;
  color: #F5A623;
}

.about-image {
  flex: 0 0 40%;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  #about {
      min-height: auto;
      padding: 2rem 5%;
  }

  .about-content {
      flex-direction: column;
      gap: 2rem;
  }

  .about-text {
      padding: 1.5rem;
  }

  .about-text h2 {
      font-size: 2rem;
  }

  .about-text p {
      font-size: 1rem;
  }

  .values h3 {
      font-size: 1.125rem;
  }

  .values p {
      font-size: 0.875rem;
  }

  .more-button {
      padding: 0.5rem 1rem;
      font-size: 0.875rem;
  }

  .corner-icon {
      font-size: 1.25rem;
  }

  .about-image {
      flex: 0 0 100%;
      max-width: 350px;
      margin: 0 auto;
  }
}

@media (max-width: 480px) {
  #about {
      padding: 1.5rem 5%;
  }

  .about-text h2 {
      font-size: 1.5rem;
  }

  .about-text p {
      font-size: 0.875rem;
  }

  .values h3 {
      font-size: 1rem;
  }

  .values p {
      font-size: 0.75rem;
  }

  .more-button {
      font-size: 0.75rem;
  }

  .corner-icon {
      font-size: 1rem;
  }
}


/* Services Section */
#services-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 5%;
  background-color: #f9f9f9;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.header-text {
  max-width: 50%;
}

.section-label {
  color: #ff6200;
  font-size: 0.875rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0.625rem;
  display: block;
}

.header-text h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #1a3c5e;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.header-text p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

.contact-info {
  text-align: right;
}

.phone-number {
  font-size: 1.125rem;
  font-weight: bold;
  color: #333;
  display: block;
  margin-bottom: 0.5rem;
}

.contact-label {
  font-size: 0.875rem;
  color: #666;
  display: block;
  margin-bottom: 0.75rem;
}

.contact-button {
  background: none;
  border: 2px solid #ff6200;
  color: #ff6200;
  font-size: 0.875rem;
  font-weight: bold;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.contact-button i {
  margin-right: 0.5rem;
}

.contact-button:hover {
  background-color: #ff6200;
  color: white;
  text-decoration: none;
}

.services-cards {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
}

.card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  flex: 1;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.card .icon {
  font-size: 2.5rem;
  color: #ff6200;
  margin-bottom: 1.5rem;
}

.card h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #1a3c5e;
  margin-bottom: 0.75rem;
}

.card p {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.6;
}

@media (max-width: 768px) {
  #services-section {
      padding: 2rem 5%;
  }

  .services-header {
      flex-direction: column;
      text-align: center;
      gap: 1.5rem;
  }

  .header-text {
      max-width: 100%;
  }

  .header-text h1 {
      font-size: 2rem;
  }

  .header-text p {
      font-size: 0.875rem;
  }

  .contact-info {
      text-align: center;
  }

  .services-cards {
      flex-direction: column;
      gap: 1rem;
  }

  .card {
      padding: 1.5rem;
  }

  .card .icon {
      font-size: 2rem;
  }

  .card h3 {
      font-size: 1.125rem;
  }

  .card p {
      font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  #services-section {
      padding: 1.5rem 5%;
  }

  .header-text h1 {
      font-size: 1.5rem;
  }

  .header-text p {
      font-size: 0.75rem;
  }

  .phone-number {
      font-size: 1rem;
  }

  .contact-label {
      font-size: 0.75rem;
  }

  .contact-button {
      font-size: 0.75rem;
      padding: 0.4rem 0.8rem;
  }
}

/* projects Section */


#projects {
  padding: 3rem 5%;
  background-color: hsl(32, 98%, 51%);
  color: #333;
}

#projects h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-align: center;
  color: #f7f5f5;
}

#projects .subheading {
  font-size: 1.125rem;
  color: #f7f5f5;
  margin-bottom: 3rem;
  text-align: center;
  font-style: italic;
}

.projects-content {
  display: flex;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.project {
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  flex: 1;
  max-width: 400px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.project img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 1.5rem;
  transition: opacity 0.3s ease;
}

.project img:hover {
  opacity: 0.9;
}

.project .category {
  display: inline-block;
  font-size: 0.875rem;
  color: #ff6200;
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding: 0.25rem 0.75rem;
  background-color: rgba(255, 98, 0, 0.1);
  border-radius: 3px;
}

.project h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1a3c5e;
  margin-bottom: 0.75rem;
}

.project p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.project p strong {
  color: #333;
}

.project-link {
  color: #ff6200;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  border: 2px solid #ff6200;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.project-link:hover {
  background-color: #ff6200;
  color: white;
  text-decoration: none;
}

@media (max-width: 768px) {
  #projects {
      padding: 2rem 5%;
  }

  #projects h2 {
      font-size: 2rem;
  }

  #projects .subheading {
      font-size: 1rem;
      margin-bottom: 2rem;
  }

  .projects-content {
      flex-direction: column;
      gap: 1.5rem;
  }

  .project {
      padding: 1.5rem;
      max-width: 100%;
  }

  .project h3 {
      font-size: 1.25rem;
  }

  .project p {
      font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  #projects {
      padding: 1.5rem 5%;
  }

  #projects h2 {
      font-size: 1.5rem;
  }

  #projects .subheading {
      font-size: 0.875rem;
  }

  .project {
      padding: 1rem;
  }

  .project h3 {
      font-size: 1.125rem;
  }

  .project p {
      font-size: 0.75rem;
  }

  .project-link {
      font-size: 0.875rem;
      padding: 0.4rem 0.8rem;
  }
}



/* Client Section */


#clients {
  padding: 3rem 5%;
  background-color: #e6f0fa;
  text-align: center;
}

#clients h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #1a3c5e;
  margin-bottom: 2rem;
}

#clients .credentials-grid,
#clients .clientele-grid {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.credential-card,
.client-card {
  background-color: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  flex: 1;
  min-width: 200px;
  max-width: 250px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease forwards;
  animation-delay: calc(0.1s * var(--i));
}

.credential-card i,
.client-card i {
  font-size: 2rem;
  color: #F5A623;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.credential-card h3,
.client-card h3 {
  font-size: 1.125rem;
  font-weight: bold;
  color: #333;
  margin: 0;
}

.credential-card:hover,
.client-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.credential-card:hover i,
.client-card:hover i {
  color: #1a3c5e;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  #clients {
    padding: 2rem 5%;
  }

  #clients h2 {
    font-size: 1.5rem;
  }

  .credentials-grid,
  .clientele-grid {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .credential-card,
  .client-card {
    width: 100%;
    max-width: 300px;
    min-width: unset;
  }

  .credential-card i,
  .client-card i {
    font-size: 1.5rem;
  }

  .credential-card h3,
  .client-card h3 {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  #clients h2 {
    font-size: 1.25rem;
  }

  .credential-card,
  .client-card {
    padding: 1rem;
    max-width: 100%;
  }

  .credential-card i,
  .client-card i {
    font-size: 1.25rem;
  }
}


/* professional-credentials */

.credentials-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.credentials-logos img {
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.credentials-logos img:hover {
  transform: scale(1.1);
  cursor: pointer;
}

@media (max-width: 600px) {
  .credentials-logos {
    padding: 1rem;
    gap: 10px;
  }

  .credentials-logos img {
    height: 40px; /* smaller logo height on phones */
  }
}


/* Contact Section */
#contact-section {
  display: flex;
  min-height: 600px;
  background-color: #1a1a1a;
}

.contact-form {
  flex: 1;
  padding: 2rem;
  color: #fff;
}

.contact-form h1 {
  font-size: 1.5rem;
  color: #fff;
}

.contact-form p {
  color: #ccc;
  margin-bottom: 2rem;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form label {
  font-size: 0.875rem;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  background-color: #333;
  color: #fff;
}

.contact-form textarea { resize: vertical; }

.contact-form button {
  display: inline-block;
  background-color: #e69500;
  color: rgb(25, 19, 19);
  padding: 0.5rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 0.875rem;
  transition: background-color 0.3s;
  text-align: left;
}

.contact-form button:hover { background-color: hsl(32, 98%, 51%); }

footer {
  padding: 1rem;
  text-align: center;
  background-color: #1a1a1a;
  color: #ccc;
  font-size: 0.875rem;
}

#back-to-top {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  background-color: hsl(32, 98%, 51%);
  color: white;
  border: none;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.2rem;
  cursor: pointer;
  display: none;
}

#back-to-top:hover { background-color: #d6931f; }

.contact-image {
  width: 50vw;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding-top: 2cm; /* Remove padding that interferes with height */
}

.contact-image img {
  width: 100%;
  height: 100%;             /* 🔥 Fill full height */
  object-fit: cover;        /* 🔥 Ensures image is not distorted */
  border-radius: 10px;
}



 /* professional-credentials */



/* Responsive Design */
@media (max-width: 768px) {
  header,
  .ribbon {
    flex-direction: column;
    padding: 0.5rem 5%;
  }

  .ribbon h5 {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  nav ul { gap: 0.5rem; }
  nav ul li a { font-size: 0.875rem; }
  .social-links a { width: 1.5rem; height: 1.5rem; }
  .social-links a i { font-size: 0.875rem; }

  #home { height: 70vh; }
  #home h2 { font-size: 1.5rem; }
  .cta-button,
  .more-button { padding: 0.5rem 1rem; font-size: 0.75rem; }

  #about { height: auto; padding: 2rem 5%; }
  .about-content { flex-direction: column; gap: 1.5rem; }
  .about-text,
  .about-image { flex: 1; text-align: center; }
  .about-image { max-width: 80%; margin: 0 auto; }

  .services-header { flex-direction: column; text-align: center; }
  .header-text { max-width: 100%; margin-bottom: 1rem; }
  .services-cards { flex-direction: column; align-items: center; gap: 1rem; }
  .card { margin: 1rem; }

  .projects-content { flex-direction: column; gap: 1.5rem; }
  .project { max-width: 100%; }

  #contact-section {
    flex-direction: column;
    align-items: center;
    min-height: 150px;
    padding: 2rem 5%;
    width: 100%;
  }

  .contact-form { padding: 1.5rem; }
  .contact-image { flex: 0 0 40%; display: block;padding: 1cm; }
  .contact-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    object-fit: cover;
  }

  footer { font-size: 0.75rem; }
}

@media (max-width: 768px) {
  #contact-section { padding: 1.0rem 5%; }
  .contact-image { flex: 0 0 80%; justify-content: center; }
  .contact-image img { width: 120%; max-width: 120%; height: 200px; }
}

@media (max-width: 480px) {
  .contact-image { flex: 0 0 90%; justify-content: center; }
  .contact-image img { width: 100%; max-width: 100%; height: 150px; }
}