


/* Global styles */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #f9f9f9;
  color: #333;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: rgba(3, 40, 38, 0.85);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: #eceef3;
  
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: #f1f5f6;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #1e3a8a;
}

/* Hero Section */

/* Responsive */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-image {
    margin-top: 2rem;
  }

  .nav-links {
    gap: 1rem;
  }
}


/* About Section */
.about {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 4rem 2rem;
  background-color: #ffffff;
  position: relative;
}

.about-image img {
  max-width: 400px;
  width: 100%;
  background-color: #0a4546;
  border-radius: 0 40px 0 40px;
  box-shadow: 0 10px 30px rgba(1, 35, 35, 0.1);
}

.about-image .gavel {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 260px;
  animation: bounce 2s infinite;
}

/* Small bounce animation */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-2mm);
  }
}

.about-content {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.about-content h3 {
  font-size: 2rem;
  color: #1e2f97;
  margin-bottom: 1rem;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 1.5rem;
}

.more-about {
  background-color: #c19d74;
  color: white;
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.more-about:hover {
  background-color: #a97e57;
}

.about-features {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.about-features li {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #1e2f97;
  font-weight: 500;
}

.about-features i {
  color: #1e2f97;
  font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .about {
    flex-direction: column;
    text-align: center;
  }

  .about-image img {
    margin-bottom: 2rem;
  }

  .about-features {
    align-items: center;
  }
}
    




    /* partice area */


    h2 {
      font-size: 36px;
      font-weight: bold;
      color: #056565;
      margin-bottom: 40px;
      position: relative;
      text-align: center
    }

    h2::before,
    h2::after {
      content: '';
      position: absolute;
      top: 50%;
      width: 40px;
      height: 4px;
      background: #d59127;
    }

    h2::before {
      left: 30%;
    }

    h2::after {
      right: 30%;
    }

    .practice-area {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 40px;
      max-width: 1300px;
      margin: 0 auto;
    }

    .practice-card {
      border-left: 2px solid #ccc;
      padding-left: 20px;
      text-align: left;
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .practice-card i {
      font-size: 36px;
      color: #d59127;
    }

    .practice-card h3 {
      font-size: 20px;
      margin: 0;
      font-weight: bold;
      color: #101111;
    }

    .practice-card p {
      margin: 5px 0 0;
      color: #777;
    }

    /* advocate */
    .advocate {
      display: flex;
      align-items: flex-start;
      justify-content: center;
      max-width: 1200px;
      margin: 0 auto;
      gap: 40px;
    }

    .advocate img{
      width: 200px;
      height: auto;
      object-fit: contain;
    }

    .about-text {
      max-width: 750px;
      font-size: 17px;
      line-height: 1.8;
    }

    @media screen and (max-width: 768px) {
      .advocate {
        flex-direction: column;
        text-align: center;
      }

      .about-text {
        max-width: 100%;
      }

      .advocate img{
        margin: 0 auto;
      }
    }


/* Contact Section 
.contact {
  background-color: #e0f2fe;
  padding: 4rem 2rem;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info {
  flex: 1;
  min-width: 280px;
}

.contact-info h2 {
  color: #1e3a8a;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-info p {
  color: #555;
  margin-bottom: 1.5rem;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info li {
  margin-bottom: 1rem;
  color: #1e3a8a;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-info i {
  font-size: 1.2rem;
}


/* Responsive 
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
} */



/* Footer */
.footer {
  background-color: #0a4546;
  color: #ffffff;
  padding: 3rem 2rem 1rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-brand h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  font-size: 0.95rem;
  color: #cbd5e1;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-contact p {
  margin: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #cbd5e1;
}

.footer-socials a {
  color: #cbd5e1;
  margin-right: 0.7rem;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.footer-socials a:hover {
  color: #ffffff;
}

.footer-bottom  {
  text-align: center;
  margin-top: 2rem;
  border-top: 1px solid #3b5998;
  padding-top: 1rem;
  font-size: 0.9rem;
  color: #cbd5e1;
}
.footer-bottom a{
  color: whitesmoke;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links,
  .footer-contact {
    margin-top: 1.5rem;
  }
}

-------------------------------------------------------------------------------------

/* Banner */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;


}

.hero {
  font-family: 'Georgia', serif;
  background-image: linear-gradient(rgba(4, 35, 33, 0.85), rgba(4, 35, 33, 0.85)), 
  url('./Images/banner2.jpg');
  
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow-x: hidden;
  padding: 50px 20px; /* Add padding if needed */
}



.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 6rem;
  gap: 2rem;
  flex-wrap: wrap;
 
}

.hero-content {
  max-width: 600px;
  
}

.subheading {
  color: #D6A86E;
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

.title {
  font-size: 3.5rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 2rem;
  min-height: 150px;
  color:white;
}

.title span {
  border-right: 3px solid #C8945E;
  animation: blink 0.7s infinite;
  padding-right: 5px;
}

@keyframes blink {
  0%, 100% { border-color: transparent; }
  50% { border-color: #C8945E; }
}

.social-proof {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.avatars img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  margin-right: -10px;
  border: 2px solid #031E1E;
}

.rating-text {
  margin-left: 1.2rem;
}

.rating-text p:first-child {
  font-weight: 500;
}

.cta-btn {
  background-color: #C8945E;
  color: #fff;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.cta-btn:hover {
  background-color: #a7743c;
}

/* Image container 
.hero-image {
  position: relative;
  width: 350px;
  height: 450px;
  border-radius: 50px;
  overflow: hidden;
  border: 3px solid #C8945E;
  transition: transform 0.3s ease;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40px;
  transition: opacity 1s ease;
}

.hero-image:hover {
  transform: scale(1.02);
}

.badge {
  position: absolute;
  top: -25px;
  left: -25px;
  background-color: #143534;
  color: #fff;
  border-radius: 50%;
  padding: 20px;
  font-size: 0.8rem;
  text-align: center;
  line-height: 1.3;
  border: 3px solid #C8945E;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .hero {
    padding: 2rem;
    flex-direction: column;
    text-align: center;
  }
  .hero-image {
    width: 100%;
    max-width: 400px;
    height: auto;
  }
} */

/* Center the whole section */
.image-wrapper {
position: relative;
width: 300px;
margin: 50px ; 
border: 2px solid white;
border-radius: 0 40px 0 40px;
padding: 9px;
background: transparent;
box-shadow: 0 0 0 3px #c69a5a; 
overflow: visible;

/* position: fixed;
top: 50%;
right: 40px;
transform: translateY(-50%);
width: 320px;
height: 420px;
border: 2px solid white;
border-radius: 0 40px 0 40px;
box-shadow: 0 0 0 3px #c69a5a;
overflow: visible; /* allow badge to show fully 
background-color: #0f2e2c;
z-index: 10; */
}

/* Decreased image size */
.main-image {
display: block;
width: 100%;
height: 100%;
border-radius: 0 40px 0 40px;
}

/* Circular logo badge with background */
.badge-logo {
position: absolute;
left: -60px; /* more space for full visibility */
top: 50%;
transform: translateY(-50%);
width: 100px; /* slightly larger */
height: 100px;
background-color: #0f2e2c;
border-radius: 50%;
padding: 6px;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 0 10px rgba(0,0,0,0.3);
z-index: 12;
}

/* Logo inside the circle */
.badge-logo img {
width: 110%;
height: auto;
border-radius: 50%;
}


---------------------------------------------------------------------------------------
/* contact section */

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f7f7f7;
  margin: 0;
  padding: 0;
}

.contact-container {
  max-width: 1200px;
  margin: 50px auto;
  display: flex;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.contact-form-box {
  flex: 1;
  background: #244647;
  color: #fff;
  padding: 40px;
}

.contact-title {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 20px;
}

.contact-subtitle {
  color: #c49660;
  font-weight: 500;
  margin-bottom: 10px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 45px 15px 15px;
  border-radius: 10px;
  border: none;
  font-size: 16px;
  outline: none;
}

.textarea textarea {
  resize: none;
}

.form-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #b48552;
  font-size: 18px;
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-row .form-group {
  flex: 1;
}

form button {
  background: #b48552;
  color: #fff;
  border: none;
  padding: 15px;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

form button:hover {
  background: #9c6d3e;
}

.contact-info-box {
  flex: 1;
  padding: 40px;
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}

.info-block {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.info-icon {
  font-size: 30px;
  color: #244647;
}

.contact-info-box h3 {
  margin: 0 0 5px;
  font-size: 20px;
  color: #b48552;
}

.contact-info-box p {
  margin: 0;
  color: #444;
}

.contact-image img {
  width: 100%;
  max-width: 300px;
  border-radius: 15px;
  margin-top: 30px;
}
.carousel-track {
  display: flex;
  animation: scroll 30s linear infinite;
}


@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .form-row {
    flex-direction: column;
  }

  .contact-image img {
    max-width: 100%;
  }
}

/* Exprience */
----------------------------------------------------------------------------------------
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
}

.stats-section {
  background-color: #b48552;
  padding: 60px 20px;
  border-radius: 30px;
  max-width: 1200px;
  margin: 100px auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.stat {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1 1 220px;
  margin: 20px;
  background: rgba(255,255,255,0.1);
  padding: 15px 20px;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.stat:hover {
  transform: translateY(-5px);
}

.stat img {
  width: 50px;
  height: 50px;
}

.stat-content {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 28px;
  font-weight: bold;
}

.stat-label {
  font-size: 16px;
}

@media (max-width: 768px) {
  .stats-section {
    flex-direction: column;
    align-items: center;
  }

  .stat {
    width: 90%;
    justify-content: center;
  }
}

/*---------------------------------------------------------------------------------------------*/
/* laweys*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Georgia', serif;
  background-color:wheat;
  color: white;
  overflow-x: hidden;
}

.wrapper {
  display: flex;
  padding: 60px;
  gap: 50px;
  align-items: flex-start;
  background-image:linear-gradient(rgba(72, 122, 118, 0.85), rgba(56, 99, 96, 0.85)), url(./Images/Slide-1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
background-position: center;
background-color: #0f2e2c;

}
.card a{
  color: whitesmoke;
  font-weight: bold;
  margin-top: 30px;
}

.text-section {
  flex: 0 0 35%;
}

.text-section .subtitle {
  color: #c19d74;
  font-size: 20px;
}

.text-section h1 {
  font-size: 48px;
  margin: 15px 0;
  line-height: 1.2;
  color: whitesmoke;
}

.text-section .more-button {
  background-color: #c19d74;
  color: white;
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
}

.carousel-section {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  width: max-content;
  animation: scroll 45s linear infinite;
}

@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.card {
  flex: 0 0 auto;
  width: 280px;
  background-color: #163232;
  border-radius: 20px;
  margin-right: 20px;
  text-align: center;
  padding: 20px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 15px;
}

.card h3 {
  margin: 15px 0 5px;
  font-size: 22px;
  color: whitesmoke;
}

.card p {
  color: #ccc;
  font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
  .wrapper {
    flex-direction: column;
    padding: 30px;
  }

  .text-section {
    flex: 1 1 100%;
    text-align: center;
  }

  .carousel-track {
    animation-duration: 25s;
  }
}
/*----------------------------------------------------------------------------*/
/*  client */
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f5f5f5;
  margin: 0;
  padding: 0;
}

.testimonial-section {
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px;
  background-image: url('./Images/client\ banner1.avif'); /* Optional background */
  
  background-position: center;
  background-size: contain;
  
}

.section-header {
  text-align: center;
  margin-bottom: 30px;
}

.section-header p {
  color: #b0844e;
  font-weight: bold;
}

.section-header h2 {
  font-size: 2.5em;
  color: #056565;
}

.testimonial-slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 30px;
  padding: 10px;
}

.testimonial-card {
  flex: 0 0 500px;
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  position: relative;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-header img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-header h3 {
  margin: 0;
  font-size: 1.2em;
  color: #0f2c2c;
}

.testimonial-header p {
  margin: 0;
  color: #777;
  font-size: 0.9em;
}

.stars {
  color: #f0a500;
  font-size: 1.1em;
}

.testimonial-text {
  margin: 20px 0;
  font-size: 1em;
  color: #444;
  line-height: 1.6;
}

.quote-icon {
  position: absolute;
  top: 0;
  right: 0;
  background: #f1f1f1;
  padding: 20px;
  border-bottom-left-radius: 40px;
  font-size: 1.8em;
  color: #0f2c2c;
}
/*   Drafting Section */



.hero1 {

text-align: center;
color:rgb(21, 112, 161)
}

.hero1 h1 {
font-size: 3rem;
margin-bottom: 15px;
}

.hero1 p {
font-size: 1.3rem;
max-width: 700px;
margin: 0 auto;
}

.content {
display: flex;
flex-wrap: wrap;
max-width: 1200px;
margin: 40px auto;
padding: 30px;
gap: 40px;
background: #fff;
border: 2px solid #2084b6;
border-radius: 25px;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.left, .right {
flex: 1;
min-width: 280px;
}

.left p {
font-size: 1.1rem;
line-height: 1.8;
color: #444;
}

.right ul {
padding-left: 20px;
}

.right li {
margin-bottom: 10px;
font-size: 1.05rem;
color: #222;
}

.right a {
display: inline-block;
margin-top: 20px;
color: #2084b6;
text-decoration: none;
font-weight: bold;
}

.right a:hover {
text-decoration: underline;
}

@media (max-width: 768px) {
.hero1 h1 {
  font-size: 2rem;
}

.hero1 p {
  font-size: 1.1rem;
}

.content {
  flex-direction: column;
  text-align: left;
}
}