/* css/style.scss */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", sans-serif;
  color: #999999;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: "Playfair Display", serif;
  color: #333;
  margin-bottom: 15px;
}

a {
  text-decoration: none;
  transition: 0.3s;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

header {
  background: rgba(10, 10, 10, 0.9);
  color: #ffffff;
  padding: 20px 0; 
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: fixed; 
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s ease-in-out;
  display: flex;
  align-items: center;
  min-height: 70px; 
}

header .container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center; 
}

header.scrolled {
  padding: 20px 0; 
  background: #0a0a0a;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

header .container .logo {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 15px; 
  font-weight: bold;
  font-size: 1.2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
}
header .container nav ul {
  display: flex;
  gap: 30px;
}
header .container nav ul li a {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
}
header .container nav ul li a:hover {
  color: #c4a059;
}
header .container .social-icons a {
  margin-left: 15px;
  color: #ffffff;
}
header .container .social-icons a:hover {
  color: #c4a059;
}
header .container .menu-toggle {
  display: none;
  color: #fff;
  font-size: 1.5rem;
}

/* --- Mobile Menu Arrow Logic --- */
@media (max-width: 900px) {
    header nav ul {
        /* Remove display: none */
        display: flex; 
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #0a0a0a;
        padding: 20px;
        z-index: 1000;
        border-top: 1px solid #c4a059;

        /* This hides it properly for the first click */
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease-in-out;
    }

    /* The ONLY class that shows the menu */
    header nav ul.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .menu-toggle {
        display: block !important;
        cursor: pointer;
        color: #c4a059;
        transition: transform 0.3s ease;
    }

    .menu-toggle.active {
        transform: rotate(180deg);
    }
}
/* Hide arrow on desktop */
@media (min-width: 901px) {
    .menu-toggle {
        display: none;
    }
}

.hero {
  background: #111;
  padding: 150px 0 100px 0; 
  position: relative;
  overflow: hidden;
  min-height: 100vh; 
}
.hero .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.hero .hero-text {
  flex: 1;
  min-width: 300px;
}
.hero .hero-text h1 {
  font-size: 3.5rem;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero .hero-text p {
  font-size: 1.2rem;
  font-style: italic;
  color: #c4a059;
  margin-bottom: 30px;
}
.hero .hero-text .btn-hero {
  display: inline-block;
  padding: 12px 30px;
  border: 2px solid #c4a059;
  color: #c4a059;
  font-weight: bold;
}
.hero .hero-text .btn-hero:hover {
  background: #c4a059;
  color: #ffffff;
}
.hero .hero-img {
  flex: 1;
  min-width: 300px;
  text-align: right;
}
.hero .hero-img img {
  transform: scaleX(1);
  mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 85%, rgba(0, 0, 0, 0));
  -webkit-mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 85%, rgba(0, 0, 0, 0));
  max-width: 85%;
  margin-left: auto;
}

/* --- Updated About Section --- */
.about-section {
  padding: 100px 0;
  background: #fff;
  position: relative;
  /* --- ABOUT PAGE CENTER FIX --- */
}
.about-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.about-section .about-bio-section .container {
  max-width: 950px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  align-items: center;
}
.about-section .about-grid-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}
.about-section .about-col {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-section .about-col h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  line-height: 1.3;
  color: #111;
  margin: 25px 0 20px;
}
.about-section .about-col p {
  color: #666;
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 20px;
  max-width: 450px;
}
.about-section .round-img {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 10px;
}
.about-section .signature {
  font-family: "Playfair Display", cursive;
  font-size: 2.5rem;
  color: #111;
  margin-top: 10px;
  font-style: italic;
}
.about-section .yellow-circle {
  width: 260px;
  height: 260px;
  background: #f3c93e;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
  margin-bottom: 10px;
  box-shadow: 0 10px 30px rgba(243, 201, 62, 0.3);
}
.about-section .yellow-circle h3 {
  font-size: 4rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1;
}
.about-section .yellow-circle span {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 5px;
}
.about-section .stats-row {
  display: flex;
  gap: 60px;
  margin-top: 20px;
}
.about-section .stats-row .stat-item {
  text-align: center;
}
.about-section .stats-row .stat-item h3 {
  font-size: 3rem;
  color: #c4a059;
  margin: 0;
  font-family: "Playfair Display", serif;
}
.about-section .stats-row .stat-item span {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: #888;
  font-weight: 600;
}

@media (max-width: 900px) {
  .about-section .about-grid-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}
.practice-area {
  padding: 80px 0;
  text-align: center;
}
.practice-area .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.practice-area h2 {
  font-size: 3rem;
  margin-bottom: 10px;
}
.practice-area .subtitle {
  max-width: 600px;
  margin: 0 auto 50px;
}
.practice-area .practice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.practice-area .practice-card {
  background: #1a1a1a;
  padding: 40px 20px;
  color: #bbb;
  transition: 0.3s;
}
.practice-area .practice-card i {
  font-size: 3rem;
  color: transparent;
  -webkit-text-stroke: 1px #c4a059;
  margin-bottom: 20px;
}
.practice-area .practice-card h3 {
  color: #ffffff;
  font-size: 1.5rem;
}
.practice-area .practice-card p {
  font-size: 0.9rem;
  margin-top: 15px;
}
.practice-area .practice-card:hover {
  background: #000;
}
/* Update this rule to include 'i' so the last two icons also zoom */
.practice-card:hover svg,
.practice-card:hover i {
  stroke: #b08d45 !important; /* For SVGs */
  color: transparent !important; /* Keeps the 'hollow' look for icons */
  -webkit-text-stroke: 1px #b08d45 !important; /* Darker Gold outline on hover */
  transform: scale(1.1); /* This is what makes them pop out */
  transition: 0.3s;
  display: inline-block; /* Required for transform to work on <i> tags */
}

/* Update this existing rule to prevent it from filling the icon with solid color */
.practice-area .practice-card:hover i {
  /* Remove 'color: #c4a059;' if it was there to prevent filling */
  color: transparent; 
}

/* Ensure the icons have a transition base state so the zoom is smooth */
.practice-area .practice-card i {
  font-size: 3rem;
  color: transparent;
  -webkit-text-stroke: 1px #c4a059;
  margin-bottom: 20px;
  transition: 0.3s; /* Add this for smooth return animation */
  display: inline-block; 
}

.team-section {
  padding: 80px 0;
  text-align: center;
  background: #fff;
}
.team-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.team-section .team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}
.team-section .team-member .member-img {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto 20px;
}
.team-section .team-member h3 {
  margin-bottom: 5px;
}
.team-section .team-member p {
  color: #c4a059;
  font-family: "Playfair Display", serif;
  font-style: italic;
}
.team-section .team-member .socials {
  margin-top: 15px;
}
.team-section .team-member .socials a {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  background: #f9f9f9;
  margin: 0 5px;
  color: #c4a059;
}
.team-section .team-member .socials a:hover {
  background: #c4a059;
  color: #fff;
}

.testimonial {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("https://source.unsplash.com/1600x600/?gavel,law") no-repeat center center/cover;
  padding: 100px 0;
  color: #fff;
  text-align: center;
}
.testimonial .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  max-width: 800px;
}
.testimonial i.quote-icon {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 20px;
}
.testimonial p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 30px;
}
.testimonial .author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.testimonial .author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.testimonial .author span {
  font-weight: bold;
}

footer {
  background: #0a0a0a;
  color: #888;
  padding: 80px 0 20px;
}
footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 40px;
  margin-bottom: 60px;
}
footer h4 {
  color: #ffffff;
  margin-bottom: 25px;
  font-size: 1.1rem;
}
footer .footer-about .f-logo {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  display: inline-block;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
footer .footer-about .contact-info p {
  margin-bottom: 10px;
  font-size: 0.9rem;
}
footer ul li {
  margin-bottom: 12px;
}
footer ul li a:hover {
  color: #c4a059;
  margin-left: 5px;
}
footer .subscribe-form {
  display: flex;
}
footer .subscribe-form input {
  padding: 15px;
  border: none;
  width: 100%;
  outline: none;
}
footer .subscribe-form button {
  background: #f3c93e;
  border: none;
  padding: 0 20px;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
}
footer .subscribe-form button:hover {
  opacity: 0.9;
}
footer .copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .hero .container {
    flex-direction: column-reverse;
    text-align: center;
  }
  .hero-text {
    margin-top: 30px;
  }
  .about-section .container {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  header nav ul {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
/* --- Updated Testimonial Slider Styles --- */
.testimonial {
  position: relative;
}
.testimonial .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
}
.testimonial .arrow {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 50%;
}
.testimonial .arrow:hover {
  background: #c4a059;
  border-color: #c4a059;
}
.testimonial .testimonial-content {
  max-width: 800px;
  width: 100%;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial .testimonial-content .slide {
  display: none;
  animation: fadeEffect 0.5s;
}
.testimonial .testimonial-content .slide.active {
  display: block;
}

@keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (max-width: 600px) {
  .testimonial .container {
    flex-direction: column;
  }
  .testimonial-content {
    min-height: auto;
  }
}
/* --- Blog Page Styles --- */
/* 1. SECTION SETUP */
.blog-section {
    /* Increased top padding to 150px to clear fixed header */
    padding: 150px 0 80px 0; 
    background-color: #f9f9f9;
    display: flex;
    justify-content: center;
}

/* 2. CONTAINER REFINEMENT - Centered and Away from Margins */
.blog-section .blog-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
    
    /* These properties move the content away from the side margins */
    width: 90%;
    max-width: 1200px; 
    margin: 0 auto;
    padding: 0 20px; /* Internal buffer so cards don't touch edges */
}

/* 3. BLOG MAIN CONTENT */
.blog-main .blog-card {
    background: #fff;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    overflow: hidden;
    width: 100%; /* Ensures card fills the 2fr column */
}

.blog-main .blog-card .blog-img-box {
    position: relative;
    /* Height reduced slightly for better vertical proportions */
    height: 400px; 
    overflow: hidden;
}

.blog-main .blog-card .blog-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* 4. DATE BADGE & OVERLAY */
.blog-main .blog-card .blog-img-box .date-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #000;
    color: #fff;
    padding: 10px 15px;
    text-align: center;
    border-radius: 4px;
    z-index: 5;
    min-width: 60px;
}

.blog-main .blog-card .blog-img-box .date-badge .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 2px;
}

.blog-main .blog-card .blog-img-box .date-badge .month {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-main .blog-card .blog-img-box .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* 5. BUTTONS & TYPOGRAPHY */
.blog-main .blog-card .blog-img-box .read-more-btn {
    background: transparent;
    color: #fff;
    border: 2px solid #c4a059;
    padding: 12px 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.blog-main .blog-card .blog-img-box .read-more-btn:hover {
    background: #c4a059;
    color: #fff;
}

.blog-main .blog-card:hover .blog-img-box img {
    transform: scale(1.1);
}

.blog-main .blog-card:hover .overlay {
    opacity: 1;
}

.blog-main .blog-card:hover .read-more-btn {
    transform: translateY(0);
}

.blog-main .blog-card .blog-content {
    padding: 35px;
}

.blog-main .blog-card .blog-content h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    line-height: 1.4;
    font-family: 'Playfair Display', serif;
}

.blog-main .blog-card .blog-content h2 a {
    color: #0a0a0a;
    text-decoration: none;
}

.blog-main .blog-card .blog-content h2 a:hover {
    color: #c4a059;
}

.blog-main .blog-card .blog-content .excerpt {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* 6. SIDEBAR & WIDGETS */
.blog-sidebar .widget {
    background: #fff;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
}

.blog-sidebar .widget .widget-title {
    font-size: 1.2rem;
    color: #0a0a0a;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 25px;
    position: relative;
    font-family: 'Playfair Display', serif;
}

.blog-sidebar .widget .widget-title::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #c4a059;
}

/* 7. RESPONSIVE ADJUSTMENTS */
@media (max-width: 991px) {
    .blog-section .blog-container {
        grid-template-columns: 1fr;
        width: 95%;
    }
    
    .blog-main .blog-card .blog-img-box {
        height: 300px;
    }
    
    .blog-sidebar {
        margin-top: 20px;
    }
}
/* --- Blog Details Page Styles (Matches Screenshots) --- */
.blog-details-section {
  padding: 80px 0;
}
.blog-details-section .blog-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.blog-main .detail-img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 25px;
}
.blog-main .detail-title {
  font-size: 2rem;
  color: #0a0a0a;
  margin-bottom: 15px;
  font-family: "Playfair Display", serif;
}
.blog-main .detail-meta {
  color: #999;
  margin-bottom: 25px;
}
.blog-main .detail-meta span {
  margin-right: 20px;
}
.blog-main .detail-meta span i {
  color: #888;
  margin-right: 5px;
}
.blog-main .detail-content {
  color: #666;
  line-height: 1.8;
  margin-bottom: 40px;
  font-size: 1rem;
}
.blog-main .quote-block {
  background: #f9f9f9;
  padding: 30px;
  border-left: 2px solid #0a0a0a;
  font-style: italic;
  color: #666;
  line-height: 1.8;
  margin: 30px 0;
}
.blog-main .quote-block i {
  display: block;
  margin-bottom: 10px;
  color: #0a0a0a;
}
.blog-main .like-share-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #eee;
  margin-bottom: 40px;
}
.blog-main .like-share-area .likes {
  color: #666;
  font-size: 0.9rem;
}
.blog-main .like-share-area .likes i {
  color: #666;
  margin-right: 5px;
}
.blog-main .like-share-area .social-share a {
  color: #666;
  margin-left: 15px;
  font-size: 0.9rem;
}
.blog-main .like-share-area .social-share a:hover {
  color: #c4a059;
}
.blog-main .navigation-area {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}
.blog-main .navigation-area .nav-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.blog-main .navigation-area .nav-item .thumb img {
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-main .navigation-area .nav-item .text span {
  display: block;
  font-size: 0.8rem;
  color: #999;
  margin-bottom: 3px;
}
.blog-main .navigation-area .nav-item .text a {
  color: #0a0a0a;
  font-weight: 600;
  font-family: "Playfair Display";
  font-size: 1.1rem;
}
.blog-main .navigation-area .nav-item .text a:hover {
  color: #c4a059;
}
.blog-main .navigation-area .nav-item.next {
  text-align: right;
  flex-direction: row;
}
.blog-main .blog-author {
  background: #fbf9ff;
  padding: 40px;
  display: flex;
  gap: 30px;
  align-items: center;
  border-top: 1px solid #eee;
  margin-bottom: 50px;
}
.blog-main .blog-author img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-main .blog-author .author-info h4 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-family: "Playfair Display";
}
.blog-main .blog-author .author-info p {
  color: #777;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}
.blog-main .comments-area {
  margin-bottom: 50px;
}
.blog-main .comments-area .comment-title {
  font-size: 1.5rem;
  margin-bottom: 30px;
  font-family: "Playfair Display";
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}
.blog-main .comments-area .single-comment {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
.blog-main .comments-area .single-comment img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}
.blog-main .comments-area .single-comment .comment-content {
  flex: 1;
}
.blog-main .comments-area .single-comment .comment-content h5 {
  font-size: 1rem;
  margin-bottom: 5px;
}
.blog-main .comments-area .single-comment .comment-content .date {
  font-size: 0.8rem;
  color: #aaa;
  display: block;
  margin-bottom: 10px;
}
.blog-main .comments-area .single-comment .comment-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 10px;
}
.blog-main .comments-area .single-comment .comment-content .reply-btn {
  font-size: 0.8rem;
  font-weight: bold;
  color: #0a0a0a;
}
.blog-main .comments-area .single-comment .comment-content .reply-btn:hover {
  color: #c4a059;
}
.blog-main .reply-form-area .comment-title {
  font-size: 1.5rem;
  margin-bottom: 30px;
  font-family: "Playfair Display";
}
.blog-main .reply-form-area .reply-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #eee;
  margin-bottom: 20px;
  height: 150px;
}
.blog-main .reply-form-area .reply-form .input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.blog-main .reply-form-area .reply-form input {
  width: 100%;
  padding: 15px;
  border: 1px solid #eee;
  margin-bottom: 20px;
}
.blog-main .reply-form-area .reply-form .btn-send {
  background: transparent;
  border: 1px solid #c4a059;
  padding: 15px 30px;
  font-weight: bold;
  color: #0a0a0a;
  cursor: pointer;
  transition: 0.3s;
}
.blog-main .reply-form-area .reply-form .btn-send:hover {
  background: #c4a059;
  color: #fff;
}

.blog-sidebar .tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.blog-sidebar .tag-cloud a {
  background: #fff;
  border: 1px solid #eee;
  padding: 8px 15px;
  font-size: 0.85rem;
  color: #666;
  transition: 0.3s;
}
.blog-sidebar .tag-cloud a:hover {
  background: #c4a059;
  color: #fff;
  border-color: #c4a059;
}
.blog-sidebar .insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.blog-sidebar .insta-grid img {
  width: 100%;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
.blog-sidebar .insta-grid img:hover {
  opacity: 0.7;
}
.blog-sidebar .newsletter-form {
  display: flex;
  flex-direction: column;
}
.blog-sidebar .newsletter-form input {
  padding: 15px;
  border: 1px solid #eee;
  margin-bottom: 10px;
  outline: none;
}
.blog-sidebar .newsletter-form button {
  padding: 15px;
  background: #c4a059;
  color: #fff;
  border: none;
  font-weight: bold;
  cursor: pointer;
}

/* --- Footer Styles --- */
footer {
  background: #0a0a0a;
  color: #fff;
  padding: 80px 0 30px;
  /* Responsive Design */
}
footer .footer-grid-top {
  display: grid;
  /* 4 Columns: Logo is widest, others equal */
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
  /* Headings (Practice Area, Useful Links, Contact Us) */
  /* Links List */
  /* Logo */
  /* Paragraphs (Used for Address, Phone, Email) */
  /* Social Icons (LinkedIn) */
  /* GOLDEN HOVER EFFECT */
}
footer .footer-grid-top h4 {
  color: #fff;
  margin-bottom: 25px;
  font-size: 1.1rem;
}
footer .footer-grid-top ul li {
  margin-bottom: 12px;
}
footer .footer-grid-top ul li a {
  color: #999;
  transition: 0.3s;
}
footer .footer-grid-top ul li a:hover {
  color: #c4a059;
}
footer .footer-grid-top .f-logo {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  letter-spacing: 2px;
}
footer .footer-grid-top p {
  color: #999;
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 10px;
}
footer .footer-grid-top .f-social a {
  margin-right: 15px;
  color: #fff;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}
footer .footer-grid-top .f-social a:hover i {
  color: #c4a059 !important;
  transform: translateY(-3px);
}
footer .copyright {
  text-align: center;
  border-top: 1px solid #222;
  padding-top: 30px;
  color: #666;
  font-size: 0.9rem;
}
@media (max-width: 900px) {
  footer .footer-grid-top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  footer .footer-grid-top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .blog-details-section .blog-container, footer .footer-grid-top {
    grid-template-columns: 1fr;
  }
  .blog-main .navigation-area {
    flex-direction: column;
    gap: 20px;
  }
  .blog-main .navigation-area .nav-item.next {
    text-align: left;
  }
}
/* --- Social Icon Golden Hover Effect --- */
/* 1. Header & Footer Icons */
.header-right-social a,
.f-social a,
.team-social a {
  text-decoration: none;
  transition: all 0.3s ease;
}

/* 2. The Golden Hover */
.header-right-social a:hover i,
.f-social a:hover i,
.team-social a:hover i {
  color: #c4a059 !important; 
  transform: translateY(-3px);
}

/* Learn More Button Style */
.btn-learn-more {
  display: inline-block;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 10px 25px;
  background-color: #c4a059; 
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.btn-learn-more:hover {
  background-color: #0a0a0a; /* Turns Black on Hover */
  color: #c4a059; /* Text turns Gold */
}

/* --- DISCLAIMER POPUP STYLES --- */
#disclaimer-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0a0a0a; /* Dark background matching screenshot */
  z-index: 9999; /* Sits on top of everything */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-y: auto; /* Allows scrolling inside modal if screen is small */
  padding: 20px;
}

.disclaimer-content {
  max-width: 800px;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease-out; /* Entrance Animation */
}

.disclaimer-title {
  color: #c4a059; /* Gold Color */
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 20px;
}

.disclaimer-list {
  margin: 20px 0;
  padding-left: 20px;
}

.disclaimer-list li {
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #ddd;
}

.disclaimer-footer {
  font-size: 0.85rem;
  color: #aaa;
  margin-top: 20px;
  margin-bottom: 30px;
  border-top: 1px solid #333;
  padding-top: 15px;
}

 /* Disclaimer Popup Styles */
        #disclaimer-modal2 {
            display: none; 
            position: fixed; 
            top: 0; left: 0; 
            width: 100%; height: 100%; 
            background: rgba(0,0,0,0.85); 
            z-index: 10001; 
            justify-content: center; 
            align-items: center;
            padding: 20px;
            backdrop-filter: blur(5px);
        }
        .disclaimer-content2 {
            background: white; 
            padding: 40px; 
            border-radius: 4px; 
            max-width: 650px; 
            width: 100%;
            box-shadow: 0 15px 35px rgba(0,0,0,0.5);
            font-family: 'Open Sans', sans-serif;
            border-top: 5px solid #c4a059;
        }
        .disclaimer-content2 h2 {
            font-family: 'Playfair Display', serif;
            margin-top: 0;
            color: #333;
            font-size: 28px;
        }
        .disclaimer-content2 p {
            color: #555;
            line-height: 1.8;
            font-size: 15px;
            margin: 20px 0;
        }
        .btn-accept {
            background: #c4a059;
            color: white;
            border: none;
            padding: 12px 30px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            cursor: pointer;
            letter-spacing: 1px;
            transition: 0.3s;
        }
        .btn-accept:hover {
            background: #a3854a;
        }
/* Button Styling */
#agree-btn {
  display: block;
  margin: 0 auto;
  background-color: #c4a059;
  color: #fff;
  border: none;
  padding: 12px 40px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  /* Continuous Pulse Animation */
  animation: pulse 2s infinite;
}

#agree-btn:hover {
  background-color: #fff;
  color: #c4a059;
  transform: scale(1.05);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(196, 160, 89, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(196, 160, 89, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(196, 160, 89, 0);
  }
}
/* Utility to lock scrolling */
body.modal-open {
  overflow: hidden;
}

/* --- 3D BOOK REALISTIC ANIMATION --- */
.book-showcase-section {
  padding: 80px 0;
  background: #0a0a0a;
}

.book-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-top: 60px;
  /* High perspective prevents the "squashed" look */
  perspective: 2500px;
}

.book-container {
  width: 240px;
  height: 350px;
  position: relative;
  cursor: pointer;
}

.book {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  /* Default tilt so it looks 3D sitting on the shelf */
  transform: rotateY(-15deg) rotateX(5deg);
  transition: transform 0.6s ease;
}

/* 1. The Static Page (What you read when opened) */
.book-static-page {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff; /* White paper page */
  border-radius: 2px 4px 4px 2px;
  box-shadow: inset 10px 0 30px rgba(0, 0, 0, 0.1); /* Shadow near binding */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  z-index: 0;
}

.page-content h3 {
  color: #c4a059;
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.page-content p {
  color: #333;
  font-size: 0.9rem;
  line-height: 1.6;
}

.page-content .author {
  display: block;
  margin-top: 20px;
  color: #888;
  font-size: 0.8rem;
  font-weight: bold;
  text-transform: uppercase;
}

/* 2. The Hinge (The Wrapper that moves) */
.book-hinge {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  transform-origin: left; /* PIVOT POINT */
  transform-style: preserve-3d; /* Important for 3D thickness */
  transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1); /* Realistic swing physics */
}

/* 3. The Front Cover (Image) */
.book-cover-front {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden; /* Hide this side when opened */
  z-index: 2;
  border-radius: 2px 4px 4px 2px;
}

.book-cover-front img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2px 4px 4px 2px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.4);
}

/* 4. The Inside of the Cover (Visible when opened) */
.book-cover-back-face {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f4f4f4; /* Off-white inside cover */
  transform: rotateY(180deg); /* Faces the opposite way */
  backface-visibility: hidden; /* Only visible when opened */
  border-left: 5px solid #c4a059; /* Gold spine strip on inside */
  box-shadow: inset -10px 0 20px rgba(0, 0, 0, 0.1);
}

/* --- ANIMATIONS (Fixed Overlap) --- */
/* 1. Fix Overlap: Bring active book to the very front */
.book-container:hover {
  z-index: 50; /* Forces this book to sit on top of its neighbors */
}

/* 2. Hover: Open the Book (Reduced Angle) */
.book-container:hover .book-hinge {
  /* Changed from -125deg to -105deg so it doesn't hit the next book */
  transform: rotateY(-105deg);
  box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.3); /* Adds shadow for depth */
}

/* 3. Hover: Adjust angle to face user */
.book-container:hover .book {
  transform: rotateY(-10deg) rotateX(5deg);
}


.gallery-section {
    padding: 80px 0;
    background-color: #0b0b0b;
    overflow: hidden;
    /* Added a top border to separate the section */
    border-top: 2px solid rgba(196, 160, 89, 0.3); 
}

.gallery-container {
    display: flex;
    /* 85% width keeps it centered with breathing room on the sides */
    width: 85%;
    max-width: 1200px; 
    height: 500px; 
    gap: 20px; 
    margin: 0 auto;
    /* Ensures items don't collapse to zero width */
    align-items: stretch;
}

.gallery-panel {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    border-radius: 0;
    cursor: pointer;
    flex: 0.6; /* Default collapsed width */
    position: relative;
    transition: flex 0.7s cubic-bezier(0.05, 0.6, 0.4, 0.9);
    overflow: hidden;
    border: 1px solid rgba(196, 160, 89, 0.2);
}

/* --- ACCORDION LOGIC START --- */

/* 1. Set the last panel to be expanded by default */
.gallery-panel:last-child {
    flex: 4;
}

/* 2. Show content for the last panel by default */
.gallery-panel:last-child .gallery-content {
    opacity: 1;
}

/* 3. Expand panels on hover */
.gallery-panel:hover {
    flex: 4;
}

.gallery-panel:hover .gallery-content {
    opacity: 1;
}

/* 4. The "Magic": Shrink the last panel ONLY when the container is hovered 
   BUT the last panel itself is NOT being hovered */
.gallery-container:hover .gallery-panel:last-child:not(:hover) {
    flex: 0.6;
}

/* 5. Hide the last panel's text when someone hovers over a different panel */
.gallery-container:hover .gallery-panel:last-child:not(:hover) .gallery-content {
    opacity: 0;
    transition: opacity 0.2s ease;
}

/* --- ACCORDION LOGIC END --- */

.gallery-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease-in 0.4s;
    pointer-events: none;
}

.gallery-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #c4a059;
    margin-bottom: 5px;
}

.gallery-content p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    margin: 0;
}

/* Responsive tweak for mobile */
/* RESPONSIVE ANIMATED GALLERY */
@media (max-width: 768px) {
    /* 1. Turn the gallery into a horizontal swiper */
    .gallery-container {
        display: flex !important;
        flex-direction: row !important; 
        overflow-x: auto !important;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding: 0 20px 30px 20px;
        width: 100%;
        -webkit-overflow-scrolling: touch;
    }

    /* 2. Each slide (Panel) */
    .gallery-panel {
        flex: 0 0 85% !important; /* Shows 85% of image, hinting at next slide */
        height: 450px !important;
        scroll-snap-align: center;
        background-size: cover;
        background-position: center;
        position: relative;
        cursor: pointer;
    }

    /* 3. Make titles visible without hover */
    .gallery-content {
        opacity: 1 !important;
        background: linear-gradient(transparent, rgba(0,0,0,0.85));
        padding: 20px;
        bottom: 0;
        left: 0;
        right: 0;
        transform: translateY(0) !important;
    }

    .gallery-content h3 {
        font-size: 1.1rem;
        color: #c4a059;
    }

    /* Hide ugly scrollbar */
    .gallery-container::-webkit-scrollbar {
        display: none;
    }
}

/* --- UPDATED ABOUT SECTION (NARROWER) --- */
.about-bio-section .container {
  /* Changed from 1100px to 900px to increase side margins */
  max-width: 1300px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  /* Standard padding to ensure it never touches the edge on small screens */
  padding-left: 20px !important;
  padding-right: 20px !important;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
  .about-bio-section .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
/* --- MULTI-WORD TYPEWRITER STYLES --- */
.typing-text {
  color: #c4a059; /* Gold Color */
  font-family: inherit;
  font-weight: inherit;
  border-right: 4px solid #c4a059; /* The Blinking Cursor */
  white-space: nowrap; /* Keeps text on one line */
  padding-right: 5px; /* Space between letter and cursor */
  /* Only animate the cursor blink here */
  animation: blink 0.7s step-end infinite;
}

/* Cursor Blinking Animation */
@keyframes blink {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: #c4a059;
  }
}
/* --- GLOBAL THEME FIXES --- */
/* Navbar Fixes for Subpages */
.navbar-dark.bg-dark {
  background-color: #0a0a0a !important; /* Deep Black */
  padding: 15px 0;
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 10px;
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link:hover {
  color: #c4a059 !important; /* Gold Hover */
}

/* Button Outline Gold (Navbar) */
.btn-gold-outline {
  border: 1px solid #c4a059;
  color: #c4a059;
  padding: 8px 20px;
  transition: 0.3s;
}

.btn-gold-outline:hover {
  background: #c4a059;
  color: #fff;
}

/* --- TRANSPARENT SCROLLING HEADER --- */
/* 2. Hero Section Update */
.page-hero {
  margin-top: 0 !important; /* Removes gap at the top */
  /* Image Settings */
  background-image: linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.7)), url("../img/backgg.png"); /* Using your uploaded image name */
  /* 1. Force the image to start from the TOP edge (Shows the face) */
  background-position: center top !important;
  /* 2. Disable "Fixed" scrolling (This often cuts off heads on laptops) */
  background-attachment: scroll !important;
  /* 3. Increase height (Adds more vertical space to see the picture) */
  padding-top: 220px; /* Increased from 180px */
  padding-bottom: 150px; /* Increased from 100px */
  /* Keep existing settings */
  background-size: cover;
  position: relative;
  margin-top: 0 !important;
  /* 3. Height & Spacing */
  padding-top: 180px; /* Pushes text down so it doesn't hide behind the navbar */
  padding-bottom: 100px;
  text-align: center;
  color: #fff;
  position: relative;
}

/* Style for the main title */
.page-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

/* Style for the breadcrumbs (Home / Contact) */
.page-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.page-hero p a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.page-hero p a:hover {
  color: #c4a059; /* Gold on hover */
}

.page-hero .separator {
  color: #c4a059; /* Gold separator */
  margin: 0 15px;
}

/* 2. Contact Info Grid (Address, Phone, Email) */
.contact-info-section {
  padding: 80px 0;
  background: #fff;
  text-align: center;
}

.section-title h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: #0a0a0a;
  margin-bottom: 10px;
}

.section-title p {
  color: #666;
  margin-bottom: 50px;
}

.info-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap; /* Wraps on mobile */
}

.info-card {
  flex: 1;
  min-width: 280px;
  padding: 40px 20px;
  background: #fff;
  border: 1px solid #eee;
  transition: 0.3s ease;
}

.info-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Soft shadow on hover */
  border-color: #c4a059; /* Gold border on hover */
  transform: translateY(-5px);
}

.info-card .icon {
  font-size: 2rem;
  color: #c4a059; /* Gold Icon */
  margin-bottom: 20px;
}

.info-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #0a0a0a;
}

.info-card p {
  color: #666;
  line-height: 1.6;
}

/* 3. Form & Map Section (Split Layout) */
.form-map-section {
  background: #f4f4f4;
}

.form-map-wrapper {
  display: flex; /* Puts Form and Map side-by-side */
  flex-wrap: wrap;
}

/* Left Side: Form */
.form-box {
  flex: 1;
  min-width: 300px; /* Prevents it from getting too small */
  padding: 80px 50px;
  background: #f9f9f9;
}

.form-box h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #0a0a0a;
}

.contact-form .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  background: #fff;
  font-family: "Open Sans", sans-serif;
  outline: none; /* Removes default blue glow */
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #c4a059; /* Gold glow on focus */
}

.contact-form .full-width {
  margin-bottom: 20px;
}

.contact-form textarea {
  margin-bottom: 20px;
  resize: vertical; /* Allows user to stretch box downwards only */
}

/* Right Side: Map */
.map-box {
  flex: 1;
  min-width: 300px;
  min-height: 500px; /* Ensures map has height */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .form-map-wrapper {
    flex-direction: column; /* Stacks Form on top of Map */
  }
  .contact-form .form-row {
    flex-direction: column; /* Stacks Name on top of Email */
  }
  .map-box {
    height: 400px;
  }
  .form-box {
    padding: 40px 20px;
  }
}
/* --- CUSTOM SEND BUTTON (Black & White) --- */
.btn-send-custom {
  /* 1. Normal State: White BG, Black Text, Black Border */
  background-color: #ffffff;
  color: #0a0a0a;
  border: 2px solid #0a0a0a;
  /* 2. Size & Spacing (Made bigger) */
  padding: 14px 30px; /* More breathing room inside */
  font-size: 1rem; /* Readable text size */
  font-weight: 700; /* Bold text */
  letter-spacing: 2px; /* Spaced out letters */
  text-transform: uppercase;
  border-radius: 0; /* Square corners */
  cursor: pointer;
  transition: all 0.3s ease; /* Smooth animation */
  display: inline-block;
}

/* 3. Hover State: Black BG, White Text, White Border */
.btn-send-custom:hover {
  background-color: #0a0a0a;
  color: #c4a059;
  border-color: #0a0a0a; /* Matches background */
  /* If you strictly want a visible white border line inside the black button: */
  /* border: 2px solid #ffffff; */
}

/* --- GOLD DIVIDER LINES --- */
/* 2. Footer Divider (Top Line) */
footer {
  border-top: 1px solid #c4a059; /* Thin gold line */
}

/* Optional: If you want the line to be glowing/thicker */
/* footer {
    border-top: 2px solid #c4a059;
    box-shadow: 0 -10px 20px rgba(196, 160, 89, 0.1); 
}
*/
/* --- FOOTER HEADINGS WITH DASH LINE --- */
footer .f-col h4 {
  position: relative; /* Needed to position the line inside the box */
  padding-bottom: 15px; /* Space between text and the line */
  margin-bottom: 20px; /* Space between the line and the list items below */
}

/* This creates the actual line */
footer .f-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px; /* Length of the line (Adjust if you want it longer) */
  height: 2px; /* Thickness of the line */
  background-color: #c4a059; /* Your Brand Gold Color */
}

.gold-link {
  color: inherit; /* Uses the text color of the parent */
  text-decoration: none;
  transition: color 0.3s;
}

.gold-link:hover {
  color: #c4a059; /* Gold color on hover */
  
  
  /* --- Responsive Design --- */

@media (max-width: 992px) {
    /* Hero Section Adjustment */
    .hero .container {
        flex-direction: column-reverse; /* Image on top, text below on tablet */
        text-align: center;
        gap: 30px;
    }

    .hero-img img {
        max-width: 80%;
        margin: 0 auto;
    }

    /* About Bio Sections - Change from 2 columns to 1 column */
    .about-bio-section .container {
        grid-template-columns: 1fr !important; 
        text-align: center;
        padding: 0 30px;
    }

    .bio-img {
        max-width: 400px;
        margin: 0 auto; /* Center the portrait */
    }

    .bio-text div {
        display: flex;
        justify-content: center; /* Center LinkedIn icon */
    }
}

@media (max-width: 768px) {
    /* Header & Navigation */
    header .container {
        padding: 15px 20px;
    }

    nav ul {
        display: none; /* Hide nav - assuming your script.js handles the toggle */
    }

    .menu-toggle {
        display: block;
    }

    /* Hero Text */
    .hero-text h1 {
        font-size: 2rem;
    }

    /* Bio Text */
    .bio-text h2 {
        font-size: 2rem;
    }

    /* Footer Grid */
    .footer-grid-top {
        grid-template-columns: 1fr !important; /* Stack footer columns */
        gap: 40px;
        text-align: center;
    }
    
    .f-col div {
        justify-content: center !important; /* Center footer icons/address */
    }
}
}
/*# sourceMappingURL=style.css.map */