@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
}


#navbar{
  width: 100%;
  position: fixed;
    background-color: black;
    height: 40px;
    z-index: 9999; /* Ensure navbar stays on top */
}

#topnav{
    display: flex;
}

.phone-number{
    padding: 0 50px;
    width: 14%;
    height: 40px;
    background-color: #ab8646;
    display: flex;
    align-items: center;
    justify-content: center;
}
#navbar .phone-number a{
    text-decoration: none;
    font-size: 13px;
    font-family: 'poppins';
    color: white;
}

#navbar .phone-number a:hover{
    text-decoration: underline;
}

.gmail{
    padding: 0 50px;
    width: 29%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#navbar .gmail a{
    text-decoration: none;
    font-size: 13px;
    font-family: 'poppins';
    color: white;
}

#navbar .gmail a:hover{
    text-decoration: underline;
}

.line{
    height: 37px;
    border: 1px solid gray;
}

.icons {
    padding-left: 40px;
    padding-right: 40px;
    height: 40px;
    display: flex;
    justify-content: center; 
    align-items: center;
}

.icons a{
    color: white;
    text-decoration: none;
}
.icons ul{
    display: flex;
    list-style-type: none;
    gap: 30px;
    align-items: center;
    justify-content: center;
}


.icons a:hover{
    color: #ab8646;
}

#google_translate_element_wrapper {
    padding-left: 40px;
    display: flex;
    justify-content: center;
    align-items: center; 
    height: 40px;
  }
  
  #google_translate_element {
    margin: 20px;
    font-size: 14px;
  }
  
.goog-te-banner-frame {
  display: none !important;
}
  
  .goog-te-gadget-simple {
    background-color: #f1f1f1;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 5px;
    font-family: Arial, sans-serif;
    cursor: pointer;
  }
  
  .goog-te-gadget-simple:hover {
    background-color: #eaeaea;
  }

/* Middle Navbar */
.middle-navbar {
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  z-index: 999;
}

.middle-navbar-container {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}

/* Logo and H1 Size for Desktop */
.logo img {
  height: 50px; /* Default size for desktop */
}

.logo {
  display: flex;
  align-items: center;
}

.logo h1 {
  font-size: 24px; /* Default size for desktop */
  color: rgba(0, 0, 0, 0.868);
  text-decoration: none;
  padding-top: 4px;
  padding-left: 15px;
  font-family: 'poppins';
  font-weight: 700;
}

.logo a {
  text-decoration: none;
}

.logo a h1:hover {
  color: #ab8646;
}

/* Navigation Links */
.middle-nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.middle-nav-links li a {
  font-family: 'lexend';
  text-decoration: none;
  color: black;
  font-size: 16px;
  font-weight: 400;
  transition: color 0.3s;
}

.middle-nav-links li a:hover {
  color: #ab8646;
}

/* Appointment Button */
.appointment-btn a {
  font-family: "lexend";
  text-decoration: none;
  color: white;
  background-color: #ab8646;
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
  transition: background-color 0.3s, color 0.3s;
}

.appointment-btn a:hover{
  background-color: #333;
}

nav ul li a::after {
  content: '';
  display: block;
  height: 2px;
  border-radius: 10px;
  width: 0;
  position: absolute;
  bottom: -5px;
  background-color: #ab8646;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease, width 0.3s ease;
}

nav ul li a:hover::after {
  transform: translateX(-50%) scaleX(1);
  width: 100%;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -30px;
  background-color: #fff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  list-style: none;
  padding: 10px 0 10px 15px;
  min-width: 150px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  margin-top: 5px;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown-menu li a {
  font-family: 'lexend';
  padding: 8px 20px;
  font-size: 16px;
  color: #333;
  display: block;
  transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
  color: #ab8646;
  background-color: #f8f8f8;
}

/* Adjust the main navigation link positioning */
.middle-nav-links li a {
  display: inline-block;
  padding: 5px 0;
  position: relative;
}

/* Mobile Navigation Styles */
.hamburger-menu {
  display: none; /* Hide by default */
  cursor: pointer;
  position: fixed;
  top: 6px;
  right: 20px;
  z-index: 1001; /* Ensure it's above other elements */
  background: #ab8646;
  padding: 10px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hamburger-menu .bar {
  width: 25px;
  height: 2px;
  background-color: white;
  margin: 5px 0;
  transition: 0.3s;
}

/* Animate hamburger icon */
.hamburger-menu.active .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger-menu.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
  transition: 0.3s;
  overflow-y: auto;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-content {
  padding: 20px;
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin-top: 60px;
}

.mobile-nav-links li {
  margin-bottom: 15px;
}

.mobile-nav-links a {
  font-family: 'lexend';
  color: #333;
  text-decoration: none;
  font-size: 16px;
  display: block;
  padding: 10px;
  border-radius: 4px;
  transition: 0.3s;
}

.mobile-nav-links a:hover {
  background-color: #f5f5f5;
  color: #ab8646;
}

.mobile-dropdown-menu {
  display: none;
  list-style: none;
  padding-left: 20px;
  margin-top: 5px;
}

.mobile-dropdown-menu li {
  margin-bottom: 8px;
}

.mobile-dropdown-menu a {
  font-size: 14px;
}

.mobile-dropdown.active .mobile-dropdown-menu {
  display: block;
}

.mobile-dropdown .fa-chevron-down {
  float: right;
  transition: 0.3s;
}

.mobile-dropdown.active .fa-chevron-down {
  transform: rotate(180deg);
}

.mobile-appointment-btn {
  margin-top: 20px;
  text-align: center;
}

.mobile-appointment-btn a {
  display: block;
  background-color: #ab8646;
  color: white;
  padding: 12px;
  border-radius: 5px;
  text-decoration: none;
  font-family: 'lexend';
}

/* Overlay for mobile menu */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  display: none;
}

/* Media Queries */
@media (max-width: 768px) {
  .middle-nav-links,
  .appointment-btn {
    display: none;
  }

  .hamburger-menu {
    display: block;
  }

  .logo img {
    height: 40px;
  }

  .logo h1 {
    font-size: 20px;
    padding-left: 10px;
  }

  /* Animate hamburger icon */
  .hamburger-menu.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .hamburger-menu.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger-menu.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}


/* Media Query for Mobile View */
@media (max-width: 768px){#topnav {
  display: none;
}}


.banner {
  position: relative;
  background-image: url('IMG/banner.png');
  background-size: cover;
  background-position: center;
  height: 100vh; /* Adjust height as needed */
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  padding: 0 20px; /* Add padding to prevent text overflow on small screens */
}

.content {
  text-align: center; /* Center-align text for small devices */
}

.small-text {
  padding-top: 150px;
  font-family: 'roboto';
  font-weight: 200;
  font-size: 18px;
}

.big-heading {
  font-family: 'poppins';
  /* padding-top: 50px; */
  font-size: 100px;
  margin-bottom: 20px;
  line-height: 1.1; /* Adjust line height for better spacing */
}

.consult-button {
  text-decoration: none;
  font-family: "lexend";
  padding: 10px 20px;
  font-size: 16px;
  background-color: #ab8646;
  color: white;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  border-radius: 5px; /* Adds rounded corners */
  transition: all 0.3s ease; /* Smooth transition for hover effects */
}

.consult-button:hover {

  background-color: #333; /* Change background color on hover */
  transform: scale(1.1); /* Slightly increase size for effect */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* Add shadow for depth */
}

.consult-button:focus {
  outline: none; /* Remove outline when clicked */
}

/* Media Queries for Responsiveness */
@media (max-width: 1200px) {
  .big-heading {
    font-size: 80px;
  }
}

@media (max-width: 992px) {
  .big-heading {
    font-size: 70px;
  }

  .small-text {
    font-size: 20px;
  }

  .consult-button {
    font-size: 25px;
    padding: 8px 16px;
  }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .small-text {
    font-size: 22px; /* Increase small text size */
    padding-top: 100px; /* Adjust padding for better spacing */
  }

  .big-heading {
    font-size: 60px; /* Decrease heading size slightly for better fit */
  }

  .consult-button {
    padding: 15px 30px; /* Increase button padding */
    font-size: 18px; /* Increase button text size */
  }
}

/* Extra Small Mobile Screens */
@media (max-width: 576px) {
  .small-text {
    font-size: 20px; /* Slightly smaller text for very small screens */
    padding-top: 80px;
  }

  .big-heading {
    font-size: 50px; /* Further decrease heading size */
  }

  .consult-button {
    padding: 12px 25px; /* Adjust padding */
    font-size: 16px; /* Adjust button font size */
  }
}

.about-us {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 20px;
  background-color: #f4f4f4;
}

.about-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  max-width: 1200px;
  gap: 20px; /* Add spacing between left and right sides */
}

.left-side {
  display: flex;
  flex-direction: column;
  gap: 15px; /* Space between images */
}

.about-image {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
  /* margin-left: 70px;
  margin-right: 160px; */
}

.about-image:hover {
  transform: scale(1.1); /* Enlarge the image slightly on hover */
}

.right-side {
  flex: 1;
  padding-left: 30px;
}

.about-heading {
  font-family: 'lexend';
  font-size: 36px;
  font-weight: 700;
  color: #333;
}

.about-description {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-top: 20px;
  margin-bottom: 20px;
}

.know-more-btn {
  padding: 10px 20px;
  background-color: #ab8646;
  color: white;
  border: none;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.know-more-btn:hover {
  background-color: #333;
  transform: scale(1.05);
}

/* Tablet: Stack images and text vertically */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    align-items: center;
    text-align: center; /* Center-align text for smaller screens */
    gap: 30px; /* Increase spacing between left and right sides */
  }

  .left-side {
    flex-direction: row;
    flex-wrap: wrap; /* Allow images to wrap for smaller screens */
    justify-content: center;
  }

  .about-image {
    width: 120px;
    height: 120px;
  }

  .right-side {
    padding-left: 0;
  }

  .about-heading {
    font-size: 28px;
  }

  .about-description {
    font-size: 14px;
  }

  .know-more-btn {
    font-size: 14px;
    padding: 8px 16px;
  }
}

/* Mobile: Further optimize for very small screens */
@media (max-width: 576px) {
  .about-container {
    width: 90%; /* Reduce width for smaller screens */
  }

  .about-image {
    width: 100px;
    height: 100px;
  }

  .about-heading {
    font-size: 24px;
  }

  .about-description {
    font-size: 12px;
  }

  .know-more-btn {
    font-family: 'lexend';
    font-size: 17px;
    padding: 6px 12px;
  }
}


/* Trust Section Styling */
.trust-reasons {
  background-color: #262424;
  padding: 60px 20px;
  text-align: center;
}

/* Container for Cards */
.reasons-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns for 4 cards */
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card Styling */
.reason-card {
  background: linear-gradient(135deg, #ab8646, #333); /* Unique gradient */
  color: white;
  padding: 20px;
  border-radius: 10px;
  text-align: left;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  height: 250px; /* Fixed height */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Make all cards equal height and width */
.reason-card {
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Animation Effect */
.reason-card:hover {
  transform: translateY(-10px); /* Moves the card upward slightly */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Inner Card Content */
.card-content {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
}

.card-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 700;
}

.card-content p {
  font-size: 16px;
  line-height: 1.6;
  padding: 0 10px;
}

/* Background Pattern Effect */
.reason-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  z-index: 0;
  transition: all 0.5s ease;
}

.reason-card:hover::before {
  transform: scale(1.5);
  opacity: 0.1;
}

/* Styling for Icons */
.reason-card i {
  font-size: 40px;
  color: white;
  margin-bottom: 15px;
  display: block; /* Ensures the icon is on its own line */
  transition: transform 0.3s ease, color 0.3s ease;
}

.reason-card:hover i {
  color: #ffd700; /* Golden highlight effect on hover */
  transform: scale(1.2); /* Slightly enlarges the icon on hover */
}

/* Section Heading */
.trust-heading {
  text-align: center;
  font-size: 36px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #d3d3d3;
  margin-bottom: 30px;
  text-transform: uppercase;
  position: relative;
}

.trust-heading::after {
  content: "";
  width: 60px;
  height: 4px;
  background-color: #ab8646; /* Accent color */
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

/* Adjust spacing for the cards container */
.reasons-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 0 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .reasons-container {
    grid-template-columns: repeat(2, 1fr); /* 2 columns for tablets */
  }
}

@media (max-width: 768px) {
  .reasons-container {
    grid-template-columns: 1fr; /* 1 column for mobile */
  }
}


/* Practice Areas Section */
#practice-areas {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

#practice-areas .container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 2rem;
  font-family: 'Poppins', sans-serif;
  color: #333;
}

.section-header p {
  font-size: 1rem;
  font-family: 'Lexend', sans-serif;
  color: #666;
}

/* Practice Grid */
.practice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

/* Practice Cards */
.practice-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.practice-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.practice-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.practice-card h3 {
  font-size: 1.2rem;
  font-family: 'Poppins', sans-serif;
  color: #333;
  margin: 15px;
}

.practice-card p {
  font-size: 0.95rem;
  font-family: 'Lexend', sans-serif;
  color: #555;
  margin: 0 15px 15px;
}

.read-more-btn {
  display: inline-block;
  margin: 0 15px 15px;
  padding: 8px 15px;
  background-color: #ab8646;
  color: white;
  font-family: 'Lexend', sans-serif;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.read-more-btn:hover {
  background-color: black;
}


/* Footer Styles */
#main-footer {
  background: linear-gradient(135deg, #1a1a1a, #2c2315);
  color: #fff;
  padding: 50px 20px;
  font-family: 'Lexend', sans-serif;
}

#main-footer .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.footer-section {
  padding: 10px;
}

.footer-section h3,
.footer-section h4 {
  font-size: 1.6rem;
  color: #ab8646;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section p {
  font-size: 1rem;
  color: #bbb;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  font-size: 0.95rem;
  color: #ccc;
  margin: 10px 0;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s, transform 0.2s;
}

.footer-section ul li a:hover {
  color: #ab8646;
  transform: translateX(5px);
}

/* Social Icons */
.social-icons a {
  display: inline-block;
  margin-right: 10px;
  color: #ccc;
  font-size: 1.2rem;
  transition: color 0.3s;
  padding-top: 25px;
}

.social-icons a:hover {
  color: #ab8646;
}

/* Opening Hours */
.footer-section .hours li {
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
  color: #bbb;
  margin-bottom: 8px;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 0.9rem;
  color: #bbb;
  border-top: 1px solid #333;
  margin-top: 30px;
}

.footer-bottom a {
  color: #ab8646;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom a:hover {
  color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  #main-footer {
    padding: 30px 15px;
  }

  .footer-section h3,
  .footer-section h4 {
    font-size: 1.4rem;
  }

  .footer-section ul li {
    font-size: 0.9rem;
  }

  .social-icons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-section p {
    font-size: 0.9rem;
  }

  .social-icons a {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .footer-bottom {
    font-size: 0.85rem;
  }
}
