
body {
    background-color: #000000;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;;
    font-size: medium;
    margin: 0px;
}

    /* Navbar styling */
#navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #282727;
    padding: 15px 30px;
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    width: 96%;
    height: 85px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000; /* Ensures it stays above other elements */
    transition: opacity 0.3s ease;
}
#navbar.hidden {
    opacity: 0;
    pointer-events: none;
  }
.nav-links {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;;
    font-size: xx-large;
    list-style: none;
    display: flex;
    gap: 40px;
}
.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.4rem;
}
.nav-links a:hover{
    color: #c8a76b;
}
.hamburger {
  display: none;
 
}
/* Responsive design for small screens */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    margin-right: 30px;
  }

  .bar {
    height: 5px;
    width: 100%;
    background-color: #c8a76b;
    transition: all 0.4s ease;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .nav-links {
      position: fixed;
      top: 0;
      right: -100%;
      height: 100vh;
      width: 50%;
      background-color: rgba(40, 39, 39, 0.7); /* semi-transparent dark background */
      backdrop-filter: blur(12px); /* ✨ the magic blur */
      -webkit-backdrop-filter: blur(12px); /* for Safari */
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      padding: 0.5rem 1.5rem;
      transition: right 0.4s ease-in-out;
      z-index: 1000;
      box-shadow: -4px 0 20px rgba(0, 0, 0, 0.4); /* subtle shadow for depth */
    }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    text-align: right;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links li a {
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    display: inline-block;
    width: 100%;
  }

  .menu-icon {
    display: inline-block;
    width: 10px;
    height: 8px;
    background: transparent;
    margin-right: 18px;
  }

  .menu-item.active .menu-icon {
    background: #f5c518;
  }

  .menu-item.active a {
    color: #f5c518;
    font-weight: bold;
  }
}


    /* Home page Styling */
.intro {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.intro video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
    /* Overlay-text animation */
.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #c9a63d;
    font-size: 2rem;
    text-align: center;
    font-weight: bold;
    max-width: 80%;
    line-height: 1.5;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }
.overlay-text span {
      opacity: 0;
      transform: translateY(10px);
      animation: fadeIn 0.6s forwards;
  }
@keyframes fadeIn {
      to {
          opacity: 1;
          transform: translateY(0);
      }
  }
       
.animated-banner {
    width: 100vw;
    height: auto;
    background-color: #000;
    color: white;
    padding: 20px;
    margin: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Georgia', serif;
    font-size: 1.5rem;
    overflow: hidden;
}
.banner-text {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.separator {
    color: #c8a76b;
    margin: 0 10px;
    opacity: 0;
    animation: fadeIn 2.0s ease forwards;
}
.slide-left, .slide-right {
    opacity: 0;
    position: relative;
    display: inline-block;
}
.slide-left {
    animation: slideInLeft 4.0s ease forwards;
}
.slide-right {
    animation: slideInRight 4.0s ease forwards;
}
    /* Animation Keyframes */
@keyframes slideInLeft {
    from {
        left: -100px;
        opacity: 0;
    }
    to {
        left: 0;
        opacity: 1;
    }
}
@keyframes slideInRight {
    from {
        right: -100px;
        opacity: 0;
    }
    to {
        right: 0;
        opacity: 1;
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}   
    /* Staggered Animation Delays */
.delay-1 { animation-delay: 5.0s; }
.delay-2 { animation-delay: 5.3s; }
.delay-3 { animation-delay: 5.6s; }
.delay-4 { animation-delay: 5.9s; }
.delay-5 { animation-delay: 6.2s; }
.delay-6 { animation-delay: 6.5s; }
.delay-7 { animation-delay: 6.8s; }
      
.carousel-container {
    display: flex;
    justify-content: center;
}
.carousel-container h1 {
    color: #c8a76b;
    font-size: 3.5rem;
}
.carousel-heading {
    padding: 50px;
}
.carousel {
    position: relative;
    width: 600px;
    height: 400px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    padding-left: 10px;
}
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    opacity: 0;
    transition: opacity 1s ease;
    align-items: center;
    justify-content: flex-start;
    padding: 0 20px;
    gap: 10px;
}
.slide img {
    width: 70%;
    height: 100%;
    object-fit: cover;
}
.slide.active {
    opacity: 1;
    z-index: 1;
}
.info {
    color: #c8a76b;
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 20x;
    font-size: 1.8em;
    opacity: 0;
    transition: opacity 1s ease;
    text-align: left;
  }
.info.show {
    opacity: 1;
}
.slide a {
    color: #c8a76b;
    text-decoration: none;
}
  /* Directional animations */
.from-top {
    animation: slideFromTop 1s ease;
}
.from-left {
    animation: slideFromLeft 1s ease;
}
.from-right {
    animation: slideFromRight 1s ease;
}
.from-bottom {
    animation: slideFromBottom 1s ease;
}
@keyframes slideFromTop {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}
@keyframes slideFromLeft {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}
@keyframes slideFromRight {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}
@keyframes slideFromBottom {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.practice-areas-links {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: large;
    display: flex;
    text-align: center;
    color: white;
    height: 200px;
}
.area {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: background-color 0.3s ease;
    position: relative;
    font-size: large;
    padding: 10px;
}
  /* Gold-ish tones (you can adjust to taste) */
  .area:nth-child(1) { background-color: #b48b00; }
  .area:nth-child(2) { background-color: #c9a63d; }
  .area:nth-child(3) { background-color: #d4af37; }
  .area:nth-child(4) { background-color: #e1c16e; }

  /* Hover effect */
.area:hover {
    background-color: #282727;
    cursor: pointer;
}
.view-more {
    display: none;
    font-size: 0.9em;
    margin-top: 10px;
    text-decoration: underline;
    color: #ccc;
  }
.area:hover .view-more {
    display: inline;
}
.consultation-link {
    height: 300px;
    background-color: #000;
    padding: 3rem 1rem;
    text-align: center;
  }
  
  .consultation-link h2 {
    font-size: 2rem;
    color: #c8a76b;
    margin-bottom: 1.5rem;
  }
  
  .book-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #c9a63d;
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
.book-button:hover {
    background-color: #c8a76b;
}
@media (max-width: 768px) {
    .overlay-text {
      font-size: 1.5em;
      padding: 0 10px;
      white-space: normal;
      text-align: center;
    }
  
    .animated-banner {
      font-size: 0.7rem;
      padding: 7px;
    }
  
    .carousel-container h1 {
      font-size: 2rem;
      padding: 20px 10px;
      text-align: center;
    }
  
    .carousel {
      width: 100%;
      height: auto;
      padding-left: 0;
    }
  
    .slide {
      flex-direction: column;
      padding: 10px;
    }
  
    .slide img {
      width: 100%;
      height: 400px;
      object-fit: cover;
    }
  
    .info {
      font-size: 1rem;
      width: 100%;
      padding: 10px;
      margin: 5px;
      text-align: center;
    }
  
    .practice-areas-links {
      flex-direction: column;
      height: auto;
    }
  
    .area {
      font-size: 1rem;
      padding: 20px 10px;
    }
  
    .consultation-link {
      padding: 2rem 1rem;
    }
  
    .consultation-link h2 {
      font-size: 1.5rem;
    }
  
    .book-button {
      font-size: 0.9rem;
      padding: 0.6rem 1.2rem;
    }
  
    .carousel-heading {
      padding: 20px;
    }
  }
  
  
    /* About-us page styling */
#about-us{
    width: 1200px;
    text-align: center;
    line-height: 1.5;
    margin-top: 20px;
    padding: 20px;
}
.accordion {
    background: #282727;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.accordion-header {
    width: 100%;
    color: #c8a76b;
    background: #1e1e1e;
    border: none;
    padding: 25px;
    font-size: 20px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    cursor: pointer;
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 15px;
    transition: max-height 0.3s ease;
}
.accordion-content p {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;;
    font-size: 25px;
    text-align: justify;
    color: white;
    margin: 15px 0;
}
.accordion-content ol {
    list-style: none;
}
.icon {
    font-size: 20px;
    font-weight: bold;
}
#about-us h1,h2{
    color: #c8a76b;
}
@media (max-width: 768px) {
    #about-us {
      width: 100%;
      padding: 15px;
      margin-top: 10px;
    }
  
    .accordion-header {
      padding: 15px;
      font-size: 1rem;
      flex-direction: column;
      align-items: flex-start;
      gap: 5px;
    }
  
    .accordion-content p {
      font-size: 14px;
      line-height: 1.6;
      text-align: justify;
      padding: 5px 0;
    }
  
    .accordion-content {
      padding: 0 10px;
    }
  
    #about-us h1,
    #about-us h2 {
      font-size: 1.5rem;
      text-align: center;
    }
  
    .icon {
      font-size: 18px;
      align-self: flex-end;
    }
  }
  

    /* Practice-areas page Styling */
#practice-areas {
    background-image: url(images/O&D\ \(1\).png);
    background-repeat: no-repeat;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 40px;
    margin-top: 150px;
}
#practice-areas h1 {
  color: #b48b00;
}
#practice-areas h2 {
    color: #c8a76b;
}
.practice-areas-heading {
    padding-top: 60px;
    padding-left: 100px;
}
#practice-areas p, ul {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;;
    font-size: 20px;
    text-align: justify;
    color: white;
}
.practice-box {
    background: #282727;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}
.practice-box:hover {
    transform: translateY(-5px);
}
.practice-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.content {
    padding: 20px;
}
@media (max-width: 768px) {
    #practice-areas {
      grid-template-columns: 1fr;
      padding: 20px;
      margin-top: 80px;
      background-size: cover;
      background-position: center;
      gap: 15px;
    }
  
    .practice-areas-heading {
      padding-top: 30px;
      padding-left: 0;
      text-align: center;
    }
    #practice-areas h1 {
      color: #000;
  }
    #practice-areas h1,
    #practice-areas h2 {
      font-size: 1.5rem;
      text-align: center;
    }
  
    #practice-areas p,
    #practice-areas ul {
      font-size: 14px;
      padding: 0 5px;
      text-align: justify;
    }
  
    .practice-box img {
      height: 150px;
    }
  
    .content {
      padding: 15px;
    }
  }
  

    /* Team page Styling */
.team-intro{
    margin-bottom: 0;
}
.team-page-container {
    width: 80px;
    padding: 150px;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    justify-items: center;
    align-items: center;
    width: 100%;
    max-width: 1000px;
}
.team-member {
    background-color: #1a1a1a;
    padding: 20px;
    border: #e6b800;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(255,215,0,0.2);
    transition: transform 0.3s ease-in-out;
    max-width: 300px;
    text-align: center;
  }
.team-page-container h1 {
   font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
   font-size: large;
   color: #e6b800;
}
.team-member h2{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 2em;
    color: #c8a76b;
    margin: 5px 0;
}

.team-member p{
    color: #b3b3b3;
    font-size: 1em;
}

.team-member img {
    border-radius: 10px;
    margin-bottom: 10px;
}
.team-member a {
    text-decoration: none;
}
.team-member:hover {
    transform: scale(1.05);
}
@media (max-width: 900px) {
  .team-intro img {
    width: 100vw;
  }
    .team-page-container {
      padding: 100px 30px 50px;
      width: 100%;
    }
  
    .team-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
  
    .team-member {
      max-width: 90%;
    }
  }
  
  @media (max-width: 600px) {
    .team-intro img {
      width: 100vw;
      height: 60vh;
    }
    .team-page-container {
      padding: 100px 15px 30px;
      width: 100%;
    }
  
    .team-grid {
      grid-template-columns: 1fr;
      gap: 15px;
    }
  
    .team-member h2 {
      font-size: 1.2rem;
    }
  
    .team-member p {
      font-size: 0.95rem;
      padding: 0 5px;
    }
  
    .team-member img {
      width: 100%;
      height: auto;
    }
  
    .team-page-container h1 {
      font-size: 1.3rem;
      text-align: center;
    }
  }
  

  /* Footer Styling */
footer {
    background-color: #1e1e1e;
    color: white;
    padding: 5px 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5px;
}
.footer-column {
    flex: 1;
    padding: 10px;
}

.footer-column h3 {
    font-family: serif;
    color: #c9a63d;
    border-bottom: 2px solid #c8a76b;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-column p,
.footer-column a {
    color: white;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;;
    font-size: 20px;
    line-height: 1;
    text-decoration: none;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 5px;
}

.footer-column ul li a:hover {
    color: #c8a76b;
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #c8a76b;
}
.copyrights {
    height: 30px;
    color: white;
    background-color: #000000;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 15px;
}
.left {
    text-align: left;
}
.right {
    text-align: right;
    font-style: italic;
}
@media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      padding: 10px;
      align-items: center;
      text-align: center;
    }
  
    .footer-column {
      width: 100%;
      padding: 10px 0;
    }
  
    .footer-column h3 {
      font-size: 1rem;
    }
  
    .footer-column p,
    .footer-column a {
      font-size: 0.9rem;
      text-align: left;
    }
  
    .copyrights {
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      gap: 5px;
      height: auto;
      padding: 10px 0;
    }
  
    .left, .right {
      width: 100%;
      font-size: 0.85rem;
      text-align: center;
    }
  }
  


    /* Contants page Styling */
.contacts-intro {
    margin-bottom: 10px;
}
.contact-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 20px;
    max-width: 1000px;
    margin: auto;
    margin-top: 0;
}
.location {
    flex: 1;
    padding: 20px;
}
.left-align {
    text-align: right;
}
.right-align {
    text-align: left;
}
.divider {
    width: 2px;
    height: 250px;
    background-color: #c8a76b;
    margin: 0 30px;
}
      
      /* Optional: Styling */
.contact-section h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #c8a76b;
}
.contact-section p {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 20px;
    line-height: 1.6;
    color: white;
}
.contact-section a {
    color: #c8a76b;
    text-decoration: none;
}
.map-container {
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 20px; /* reduce or increase as needed */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
    .contact-section {
      flex-direction: column;
      align-items: center;
      padding: 20px 10px;
      gap: 20px;
    }
  
    .location {
      width: 100%;
      padding: 10px;
    }
  
    .divider {
      width: 60%;
      height: 1px;
      margin: 20px 0;
      background-color: #c8a76b;
    }
  
    .left-align,
    .right-align {
      text-align: center;
    }
  
    .contact-section h3 {
      font-size: 1.2rem;
    }
  
    .contact-section p {
      font-size: 0.95rem;
    }
  }  
  

    /* Profile page styling */
.lawyer-profile {
    background: #282727;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    margin-top: 100px;
}
.profile-container {
    display: flex;
    align-items: center;
    padding: 50px;
}
.profile-info {
    margin-left: 40px;
}
.profile-info h1 {
    font-size: 2.5em;
    margin: 0 0 10px;
    color: #b48b00;
  }
.profile-info p {
    font-size: 1.5em;
    text-align: justify;
    margin: 5px 0;
    color: #c9a63d;
}
h1 {
    font-size: 28px;
    font-weight: 300px;
    margin-bottom: 15px;
}

    /* Tabs */
.tabs {
    display: flex;
    gap: 20px;
    border-bottom: 2px solid #c8a76b;
    margin-bottom: 15px;
}
.tab {
    font-size: 18px;
    text-decoration: none;
    color: #777;
    padding-bottom: 5px;
} 
.tab.active {
    color: #c9a63d;
    font-weight: 300;
}
    /* Content Sections */
.content-section {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 20px;
    color: white;
    text-align: justify;
}
.hidden {
    display: none;
}
.icon {
    width: 20px;
    height: 20px;
    margin-right: 0.5rem;
  }
.details {
    font-family: Arial, Helvetica, sans-serif;
}
@media (max-width: 768px) {
    .profile-container {
      flex-direction: column;
      padding: 20px;
      text-align: center;
    }
  
    .profile-info {
      margin-left: 0;
      margin-top: 20px;
    }
  
    .profile-info h1 {
      font-size: 2em;
    }
  
    .profile-info p {
      font-size: 1.1em;
    }
  
    .tabs {
      flex-direction: row;
      gap: 10px;
      align-items: center;
      border: none;
    }
  
    .tab {
      padding: 10px;
      font-size: 16px;
    }
  
    .content-section {
      font-size: 15px;
      padding: 10px;
      text-align: justify;
    }
  
    .lawyer-profile {
      margin-top: 50px;
      padding: 20px;
    }
  
    .icon {
      width: 18px;
      height: 18px;
    }
  }  




