@font-face {
  font-family: 'Eurostile Regular';
  font-style: normal;
  font-weight: normal;
  src: local('Eurostile Regular'), url('../../public/fonts/eurostile.woff') format('woff');
}
  
@font-face {
  font-family: 'EuroStyle Normal';
  font-style: normal;
  font-weight: normal;
  src: local('EuroStyle Normal'), url('../../public/fonts/EuroStyle Normal.woff') format('woff');
}

:root {
    --color-primary: #0047AB; /* Violet */
    --color-primary-dark: #0047AB;
    --color-secondary: #0047AB; /* Magenta */
    --color-secondary-light: #0047AB;
    --color-accent: #F97316; /* Warm orange accent */
    --color-white: #FFFFFF;
    --color-light: #F8F9FA;
    --color-gray: #aeb2b5;
    --color-dark: #343a40;
    --color-black: #000000;
    --font-primary: 'Eurostile Regular', 'sans-serif';
    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(139, 92, 246, 0.1);
    --shadow-dark: 0 8px 20px rgba(139, 92, 246, 0.2);
    --border-radius: 8px;
}

  html {
    scroll-behavior: smooth;
    font-size: 100%; /* Base font size */
  }
  body {
    font-family: 'Eurostile Regular', 'sans-serif';
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-white);
    
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Eurostile Regular', 'sans-serif';
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--color-primary-dark);
}
  
  h1 {
    font-size: 3rem;
    letter-spacing: -0.5px;
  }
  
  h2 {
    font-size: 2.25rem;
    letter-spacing: -0.3px;
  }
  
  h3 {
    font-size: 1.75rem;
  }
  
  p {
    margin-bottom: 1.5rem;
  }
  
  a {
    text-decoration: none;
    color: var(--color-primary);
    transition: var(--transition);
  }
  
  a:hover {
    color: var(--color-secondary);
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  
  /* ===== BUTTONS ===== */
  .btn {
    display: inline-block;
    padding: 0.75rem 1.8rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  }
  
  .btn-primary {
    color: var(--color-white);
    border: none;
  }
  
  .btn-primary:hover {
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    color: var(--color-white);
  }
  

  /* ===== SECTION STYLING ===== */
  .section-padding {
    padding: 6rem 0;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 3.5rem;
  }
  
  .section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
  }
  
  .divider {
    height: 4px;
    width: 80px;
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
    margin: 0 auto;
    border-radius: 2px;
  }
  
  /* ===== HEADER & NAVIGATION ===== */
  #header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: var(--transition);
  }
  
  #header.scrolled {
    background-color: var(--color-white);
  }
  
  /* Set up the navbar with a fixed height */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px; /* Set a fixed height for the navbar */
    padding: 0 1.5rem; /* Keep horizontal padding */
    position: relative;
  }
  
  /* Style the logo container */
  .logo {
    display: flex;
    align-items: center;
    position: relative;
    height: 100%;
    /* Set a specific width for the logo area */
    width: 150px; 
  }
  
  /* Style the actual logo image */
  .logo-text {
    height: 75px; /* Your desired large size */
    width: auto;
    position: relative; /* Change to relative positioning */
    top: 50%;
    transform: translateY(-50%); /* Center vertically */
    max-width: none; /* Override any max-width constraints */
    display: block; /* Ensure it's displayed as a block element */
  }
  
  .logo-text-footer {
    height: 100px;
    width: auto;
    margin-bottom: 1rem;
  }
  
  .nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .nav-menu li {
    margin-left: 2rem;
  }
  
  .nav-menu a {
    color: var(--color-dark);
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
    font-size: 1.1rem;
  }
  
  .nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
    transition: var(--transition);
  }
  
  .nav-menu a:hover::after,
  .nav-menu a.active::after {
    width: 100%;
  }
  
  .hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001; /* Ensure it's above the mobile menu */
  }
  
  .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--color-dark);
    transition: var(--transition);
  }
  

  
  /* ===== ABOUT SECTION ===== */
  .about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
  }
  
  .about-content-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .about-text h3 {
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    position: relative;
    padding-bottom: 15px;
  }
  
  .about-content-centered .about-text h3:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
  }
  
  .about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
  }
  
  /* ===== Branches ===== */
  .practice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
  }
  
  .practice-card {
    background-color: var(--color-white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid transparent;
  }
  
  .practice-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-dark);
    border-bottom: 4px solid var(--color-primary);
  }
  
  .practice-card:hover:before {
    top: 0;
  }
  
  .practice-card h3 {
    margin-bottom: 1.2rem;
    color: var(--color-primary);
    transition: var(--transition);
  }
  
  .practice-card:hover h3 {
    color: var(--color-secondary);
  }
  

  /* ===== CONTACT SECTION ===== */
  .contact-info h3 {
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 15px;
  }
  
  .contact-info h3:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
  }
  
  .info-item {
    display: flex;
    margin-bottom: 1.8rem;
    align-items: flex-start;
  }
  
  .info-icon {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-right: 1.2rem;
    background-color: rgba(139, 92, 246, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
  }
  
  .info-item:hover .info-icon {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: scale(1.1);
  }
  
  .info-details {
    flex: 1;
  }
  
  .info-details h4 {
    margin-bottom: 5px;
    color: var(--color-dark);
    font-size: 1.1rem;
  }
  
  .office-hours {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-light);
  }
  
  .office-hours h4 {
    margin-bottom: 1rem;
    color: var(--color-primary);
    font-size: 1.3rem;
  }
  
  .office-hours p {
    margin-bottom: 0.5rem;
  }
  
  /* ===== FOOTER ===== */
.footer {
  background-color: #FFFFFF; /* White background */
  color: #333333; /* Dark text for contrast */
  position: relative;
  margin-top: 50px;
}

.footer:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: #0047AB; /* Cobalt blue accent line at top */
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  padding: 4rem 0;
}

.footer-logo img {
  height: 100px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-logo p {
  color: #0047AB; /* Cobalt blue */
  font-weight: 500;
  margin-bottom: 1.5rem;
}


.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.footer-column h3 {
  color: #0047AB; /* Cobalt blue */
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.8rem;
  font-size: 1.3rem;
  font-weight: 700;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: #0047AB; /* Cobalt blue */
}

.footer-column ul {
  list-style: none;
  padding-left: 0;
}

.footer-column ul li {
  margin-bottom: 1rem;
}

.footer-column ul li a {
  color: #444444; /* Dark grey */
  transition: all 0.3s ease;
  position: relative;
  padding-left: 15px;
  display: inline-block;
  text-decoration: none;
}

.footer-column ul li a:before {
  content: '→';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #0047AB; /* Cobalt blue */
  font-size: 0.8rem;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-column ul li a:hover {
  color: #0047AB; /* Cobalt blue */
  padding-left: 20px;
}

.footer-column ul li a:hover:before {
  opacity: 1;
}

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid #E0E0E0; /* Light grey border */
  background-color: #F8F8F8; /* Very light grey */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: #444444; /* Dark grey */
}

.footer-legal a:hover {
  color: #0047AB; /* Cobalt blue */
}


  /* ===== RESPONSIVE STYLES ===== */
  @media (max-width: 992px) {
    .contact-content {
      grid-template-columns: 1fr;
      gap: 3rem;
    }
    
    .hero h1 {
      font-size: 3rem;
    }
  
    .footer-content {
      grid-template-columns: 1fr;
      gap: 3rem;
    }
  
    .section-padding {
      padding: 5rem 0;
    }
  }
  
  @media (max-width: 768px) {
    html {
      font-size: 90%; /* Slightly reduce base font size for medium screens */
    }
    
    .hamburger {
      display: block;
    }
  
    .hamburger.active .bar:nth-child(2) {
      opacity: 0;
    }
  
    .hamburger.active .bar:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }
  
    .hamburger.active .bar:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }
  
    .nav-menu {
      position: fixed;
      left: -100%;
      top: 70px;
      gap: 0;
      flex-direction: column;
      background-color: var(--color-white);
      width: 100%;
      text-align: center;
      transition: var(--transition);
      box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
      padding: 2rem 0;
      height: 100vh; /* Full height */
    }
  
    .nav-menu.active {
      left: 0;
      z-index: 1000;
    }
  
    .nav-menu li {
      margin: 1.8rem 0;
    }
  
    .footer-links {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  
    .footer-bottom {
      flex-direction: column;
      gap: 1.5rem;
      text-align: center;
    }
  
    .footer-legal {
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }
  
    .footer-legal a {
      margin: 0.5rem 0;
    }
    
    .practice-grid {
      gap: 1.5rem;
    }
  }
  
  @media (max-width: 576px) {
    html {
      font-size: 85%; /* Further reduce base font size for small screens */
    }
    
    .section-padding {
      padding: 4rem 0;
    }
    
    .hero h1 {
      font-size: 2.2rem;
    }
    
    .hero p {
      font-size: 1.1rem;
    }
  
    .practice-grid {
      grid-template-columns: 1fr;
    }
    
    .btn {
      padding: 0.7rem 1.5rem;
      font-size: 0.9rem;
    }
    
    .hero .btn {
      display: block;
      margin: 0 auto 1rem;
      width: 80%;
    }
    
    
    .info-item {
      flex-direction: column;
    }
    
    .info-icon {
      margin-bottom: 1rem;
      margin-right: 0;
    }
  
    .hero-logo {
      width: 100px;
      margin-bottom: 1.5rem;
    }
  

}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


.carousel-container {
  position: relative;
  width: 100%;
  height: 100vh; /* Changed from 600px to 100vh for full viewport height */
  overflow: hidden;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; /* Changed from 100vw to 100% to match container */
  height: 100%; /* Changed from 100vh to 100% to match container */
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  text-align: left;
  margin: 0;
  padding: 0;
}



.carousel-slide.active {
  opacity: 1;
  z-index: 2;
}

.slide-content {
  position: relative;
  z-index: 3;
  padding-left: 10%;
  width: 100%;
  padding-bottom: 6%;
}

.slide-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  max-width: 60%;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.carousel-controls {
  position: absolute;
  bottom: 30px;
  left: 10%;
  display: flex;
  z-index: 10;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  margin: 0 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background-color: #fff;
  transform: scale(1.3);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
  color: #fff;
  font-size: 24px;
  transition: all 0.3s ease;
}

.carousel-arrow:hover {
  background-color: rgba(255, 255, 255, 0.6);
}

.prev-arrow {
  left: 20px;
}

.next-arrow {
  right: 20px;
}

.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.icon-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 0.16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60%;
}


section#services {
  padding: 50px 20px;
  background-color: #fff;
  text-align: center;
}
section#services h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: var(--color-primary);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.service-card {
  background-color: #fafafa;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
.service-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #0047AB;
}
.service-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  section#services {
    padding: 30px 10px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card h3 {
    font-size: 20px;
  }
  .service-card p {
    font-size: 14px;
  }
}
.corporate-clients {
  padding: 30px 0 6px;
  background: white;
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  color: var(--color-primary);
  font-size: 38px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.client-logo-container {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #0d00ff;
  overflow: hidden;
}

.client-logo {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@media (max-width: 992px) {
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .clients-grid {
    grid-template-columns: 1fr;
  }
  
  .section-header h2 {
    font-size: 28px;
  }
}

/* Step 3: Update the navbar font color to cobalt blue */
.nav-menu a {
    color: #0047AB; /* Cobalt blue color */
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
    font-size: 1.1rem;
    font-family: 'Eurostile Regular', sans-serif; /* Explicitly set font for navbar */
}

/* Also update hover state to maintain color consistency */
.nav-menu a:hover {
    color: #0047AB; /* Keep the same cobalt blue on hover */
}

/* Responsive styles */
@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .footer-links {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .footer-legal {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .footer-legal a {
    margin: 0.5rem 0;
  }
  

}
.contact {
  background-color: #f7f7f7;
  padding: 80px 0;
}

/* Location Boxes Styles */
.location-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 60px;
}

.location-box {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  flex: 1;
  min-width: 250px;
  text-align: center;
  transition: all 0.3s ease;
  border-top: 4px solid #0047AB;
}

.location-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.location-box h3 {
  color: #0047AB;
  margin-bottom: 20px;
  font-size: 22px;
  font-family: 'Eurostile Regular', sans-serif;
}

.location-box p {
  margin-bottom: 8px;
  color: #333;
  font-size: 16px;
  line-height: 1.6;
}

/* Contact Details Styles */
.contact-details {
  max-width: 600px;
  margin: 0 auto;
}
.info-details p {
  font-size: 16px;
  color: #444;
}

.office-hours {
  margin-top: 40px;
  text-align: center;
}

.office-hours h4 {
  color: #0047AB;
  margin-bottom: 10px;
  font-size: 20px;
  font-family: 'Eurostile Regular', sans-serif;
}

.social-media {
  margin-top: 40px;
  text-align: center;
}

.social-media h4 {
  color: #0047AB;
  margin-bottom: 15px;
  font-size: 20px;
  font-family: 'Eurostile Regular', sans-serif;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #0047AB;
  color: white;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  transform: translateY(-5px);
  background-color: #003380;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .location-boxes {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .location-box {
    min-width: 200px;
    padding: 25px 20px;
  }
  
  .info-item {
    flex-direction: column;
    text-align: left;
  }
  
  .info-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .location-boxes {
    flex-direction: column;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .location-box {
    width: 100%;
  }
  
  .contact-details {
    padding: 0 20px;
  }
}
/* Join Us Section Styles */
.join-us {
  background-color: #f9f9f9;
  position: relative;
}

.join-us:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(0, 71, 171, 0.1); /* Light cobalt blue line */
}

.join-us-content {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 50px;
  align-items: center;
}

.join-us-text h3 {
  color: var(--color-primary);
  margin-bottom: 20px;
  font-size: 28px;
  font-family: 'Eurostile Regular', sans-serif;
}

.join-us-text p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  text-align: justify;
  text-justify: inter-word;
}

.join-us-text h4 {
  font-size: 22px;
  margin-top: 25px;
  margin-bottom: 15px;
  color: var(--color-primary);
  font-family: 'Eurostile Regular', sans-serif;
}

.benefits-list {
  list-style: none;
  margin-bottom: 30px;
}

.benefits-list li {
  margin-bottom: 12px;
  font-size: 16px;
  display: flex;
  align-items: baseline;
}

.benefit-icon {
  color: var(--color-primary);
  font-weight: bold;
  margin-right: 10px;
  font-size: 18px;
}

.cta-container {
  margin-top: 35px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.btn-apply {
  display: inline-block;
  background-color: var(--color-primary);
  color: white;
  padding: 12px 30px;
  border-radius: var(--border-radius);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  margin-bottom: 10px;
  border: 2px solid var(--color-primary);
}

.btn-apply:hover {
  background-color: white;
  color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 71, 171, 0.2);
}

.cta-note {
  font-size: 14px;
  color: #666;
  font-style: italic;
}

.join-us-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.join-us-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.join-us-image:hover img {
  transform: scale(1.03);
}

.join-us-image:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to top, rgba(0, 71, 171, 0.1), transparent);
  z-index: 1;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .join-us-content {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .join-us-content {
    grid-template-columns: 1fr;
  }
  
  .join-us-image {
    order: -1; /* Image first on mobile */
    margin-bottom: 20px;
  }
  
  .benefits-list li {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .join-us-text h3 {
    font-size: 24px;
  }
  
  .join-us-text h4 {
    font-size: 20px;
  }
  
  .btn-apply {
    width: 100%;
    text-align: center;
  }
}
.notary-overlay {
    position: absolute;
    top: 100px; /* Positioned below navbar */
    right: 20px;
    z-index: 999; /* Below navbar (1000) but above carousel content */
    width: 150px;
    height: 150px;
    background-color: rgba(3, 3, 3, 0.9);
    border-radius: 8px;
    padding: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    opacity: 1;
}

/* Enhanced hover effect for notary overlay */
.notary-overlay:hover {
    transform: scale(1.15); /* Increased from 1.05 to 1.15 for bigger effect */
    background-color: rgba(0, 0, 0, 0.95); /* More opaque background */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); /* Stronger shadow */
}

/* Remove the dull effect when hovering on carousel */
.carousel-container:hover .notary-overlay {
    opacity: 1; /* Keep full opacity instead of 0.7 */
}

/* Alternative: Use JavaScript to hide/show based on scroll position */
.notary-overlay.hidden {
    opacity: 0;
    transform: translateX(-100px);
}

.notary-overlay:hover {
    transform: scale(1.05);
}

.notary-overlay img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 4px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .notary-overlay {
        width: 100px;
        height: 100px;
        top: 90px; /* Adjusted for smaller screens */
        right: 15px;
        padding: 6px;
    }
}

@media (max-width: 576px) {
    .notary-overlay {
        width: 90px;
        height: 100px;
        top: 90px; /* Adjusted for mobile */
        right: 12px;
        padding: 5px;
    }
}