/* General Styles */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--oxford-blue); /* Oxford Blue */
  color: var(--silver-chalice); /* Silver Chalice */
  overflow-x: hidden;
  scroll-behavior: smooth;
  
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
}

.experte {
  position: relative;
  z-index: 1;
  background-position: center;
  padding: 120px 0;
  text-align: center;
}

.experte-title { 
  padding-bottom: 80px;
  font-weight: 4rem;
  font-weight: var(--fw-600);
  line-height: 1.3;
  text-transform: capitalize;
  font-size: var(--fs-2);
}

.hover-button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background-color: #d3040e;
  border-radius: 25px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-bottom: 20px;
}

.hover-button:hover {
  background-color: #ff4400;
  transform: scale(1.1);
}

.explore-more-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 80px;
}

.role-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.role-card {
  background-color: #fff;
  color: #0b2545;
  border-radius: 10px;
  overflow: hidden;
  width: 345px;
  box-shadow: 0 0 10px rgba(255, 55, 0, 0.295);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 20px;
}

.role-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.role-card h3 {
  font-size: 1.25em;
  margin: 15px 0;
}

.role-card p {
  padding: 0 15px 20px;
  font-size: 1em;
  color: #333;
  text-align: center;
  margin: auto 0;
}

.role-card .hover-button {
  margin-top: auto;
}

.container1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.content {
  max-width: 50%;
}

.content h1 {
  color: #08266b;
  font-size: 36px;
  line-height: 1.4;
  margin-bottom: 20px;
  width: 35rem;
}

.cta-button {
  background-color: #ff9500;
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}

.cta-button:hover {
  background-color: #e68400;
}

.images {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-end;
}

.image-container {
  position: relative;
  width: 150px;
  height: 150px;
  display: inline-block;
}

.images img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.images img:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.client-name {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 10px;
  font-weight: bold;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 5px 10px;
  border-radius: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-container:hover .client-name {
  opacity: 1;
}


/* Header Styles */
.experts {
  height: 50vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)), url(../image/virtual.jpg);
  background-position: 50% 20%;
  background-repeat: no-repeat;
  background-size: 100%; /* Zoom out the image */
  background-attachment: fixed;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.heading {
  text-align: center;
  font-size: 2.5rem;
  color: white;
}

.expert-text {
  text-align: center;
  font-size: 1rem;
  color: white;
}

.expert-form-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 80px;
  color: var(--oxford-blue);
  border-radius: 8px;
  margin: 0 auto;
}

.expert-content {
  flex: 1;
  margin-right: 50px;
}

.expert-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
}

.expert-form-section h2 {
  font-size: 32px;
  color: var(--oxford-blue);
  animation: fadeIn 1s ease-out;
  margin-bottom: 20px;
}

/* Form Styles */
/* .openFormBtn {
  padding: 12px 25px;
  background-color: var(--bittersweet);
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 25px;
  font-size: 16px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.openFormBtn:hover {
  background-color: var(--maximum-yellow-red);
  transform: scale(1.05);
} */

/* Contact Form Popup Styling */
.contact-form-popup {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}



.close-btn {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close-btn:hover,
.close-btn:focus {
  color: #333;
  text-decoration: none;
  cursor: pointer;
}

/* Updated form styling */
.contact-form-popup .contact-form-content {
  max-width: 600px;
  margin: auto;
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  margin-top: 4%;
  position: relative;
  font-family: 'poppins', sans-serif;
}

.contact-form-popup h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
  font-weight: 600;
  font-size: 24px;
}

.contact-form-popup .form-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form-popup .form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact-form-popup .form-group label {
  font-weight: 500;
  margin-bottom: 8px;
  color: #000000;
  font-size: 15px;
}

.contact-form-popup .form-group input,
.contact-form-popup .form-group textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  color: #333;
  transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.contact-form-popup .form-group input:focus,
.contact-form-popup .form-group textarea:focus {
  border-color: #f57c00;
  box-shadow: 0 0 5px rgba(245, 124, 0, 0.3);
  outline: none;
}

.contact-form-popup .btn-primary {
  background-color: #f57c00;
  color: white;
  padding: 12px 40px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  display: block;
  margin: 20px auto 0;
  width: 150px;
  text-align: center;
}

.contact-form-popup .btn-primary:hover {
  background-color: #e67e22;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.contact-form-popup .btn-primary:active {
  background-color: #d35400;
  box-shadow: none;
}

/* Mobile devices (min-width: 450px) */
@media (min-width: 450px) {
  .contact-form-popup .contact-form-content {
    padding: 25px;
    margin-top: 8%;
  }

  .contact-form-popup h2 {
    font-size: 22px;
  }

  .contact-form-popup .form-row {
    flex-direction: column;
  }

  .contact-form-popup .btn-primary {
    padding: 10px 35px;
    font-size: 14px;
  }
}

/* Small tablets (min-width: 560px) */
@media (min-width: 560px) {
  .contact-form-popup .contact-form-content {
    padding: 30px;
    margin-top: 6%;
  }

  .contact-form-popup h2 {
    font-size: 23px;
  }

  .contact-form-popup .form-row {
    flex-direction: row;
  }

  .contact-form-popup .btn-primary {
    padding: 12px 40px;
    font-size: 15px;
  }
}

/* Tablets (min-width: 768px) */
@media (min-width: 768px) {
  .contact-form-popup .contact-form-content {
    max-width: 650px;
    margin-top: 4%;
  }

  .contact-form-popup h2 {
    font-size: 24px;
  }

  .contact-form-popup .form-row {
    gap: 25px;
  }

  .contact-form-popup .btn-primary {
    width: 160px;
  }
}

/* Small desktops (min-width: 1024px) */
@media (min-width: 1024px) {
  .contact-form-popup .contact-form-content {
    max-width: 700px;
  }

  .contact-form-popup h2 {
    font-size: 26px;
  }

  .contact-form-popup .form-row {
    gap: 30px;
  }

  .contact-form-popup .btn-primary {
    width: 170px;
    padding: 14px 45px;
  }
}

/* Large desktops (min-width: 1200px) */
@media (min-width: 1200px) {
  .contact-form-popup .contact-form-content {
    max-width: 750px;
  }

  .contact-form-popup h2 {
    font-size: 28px;
  }

  .contact-form-popup .form-row {
    gap: 35px;
  }

  .contact-form-popup .btn-primary {
    width: 180px;
    padding: 15px 50px;
  }
}




/* Footer Styles */
.footer {
  background-color: var(--oxford-blue);
  color: var(--silver-chalice);
  padding: 15px;
  text-align: center;
  font-size: 14px;
}

/* Root Variables */
:root {
  --maximum-yellow-red: hsl(53, 100%, 50%);
  --royal-blue-dark: hsl(231, 61%, 22%);
  --silver-chalice: hsl(0, 0%, 70%);
  --oxford-blue: hsl(231, 100%, 8%);
  --bittersweet: hsl(30, 95%, 49%);
  --cardinal: hsl(350, 70%, 50%);
  --medium-aquamarine: hsl(160, 51%, 60%);
  --fw-300: 300;
  --fw-400: 400;
  --fw-600: 600;
  --fs-2: 2rem;
  --fs-1: 1rem;
  --fs-3: 3rem;


  
    /**
     * transition
     */
  
    --transition: 0.25s ease-in-out;
  
  }
  
  
  
  
  
  /*-----------------------------------*\ 
   * #RESET
  \*-----------------------------------*/
  
  *, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  li { list-style: none; }
  
  a { text-decoration: none; }
  
  a,
  img,
  button,
  span,
  ion-icon,
  label,
  input,
  textarea { display: block; }
  
  button {
    font: inherit;
    background: none;
    border: none;
    cursor: pointer;
  }
  
  textarea,
  input {
    font: inherit;
    background: none;
    border: none;
    width: 100%;
  }
  
  :is(input, textarea):focus { outline: none; }
  
  :focus { outline-offset: 4px; }
  
  html {
    font-family: var(--ff-poppins);
    scroll-behavior: smooth;
  }
  
  body {
    background: var(--white);
    overflow-x: hidden;
  }
  
  ::-webkit-scrollbar { width: 10px; }
  
  ::-webkit-scrollbar-track { background: var(--white); }
  
  ::-webkit-scrollbar-thumb { background: hsl(0, 0%, 50%); }
  
  
  
  
  
  /*-----------------------------------*\ 
   * #REUSED STYLE
  \*-----------------------------------*/
  
  .container { padding: 0 15px 20px; }
  
  .h1,
  .h2,
  .h3 {
    font-weight: var(--fw-600);
    line-height: 1.3;
    text-transform: capitalize;
  }
  
  .h1 {
    color: var(--oxford-blue);
    font-size: var(--fs-1);
  }
  
  .h2 { font-size: var(--fs-2); }
  
  .h3 {
    color: var(--oxford-blue);
    font-size: var(--fs-3);
  }
  
  .h4 {
    color: var(--royal-blue-dark);
    font-size: var(--fs-5);
    font-weight: var(--fw-600);
  }
  
    
    .btn {
      font-size: var(--fs-6);
      text-transform: uppercase;
      font-weight: var(--fw-600);
      padding: 12px 32px; /* Adjust padding for better balance */
      border: none; /* Remove default border */
      border-radius: 8px; /* Slightly larger border-radius for a more rounded look */
      display: inline-flex; /* Aligns content in a row */
      align-items: center; /* Vertically centers the content */
      justify-content: center; /* Centers content within the button */
      gap: 12px; /* Slightly reduced gap */
      background: var(--bittersweet);
      color: var(--white);
      text-decoration: none; /* Remove underline from links */
      box-shadow: 0 4px 8px rgba(255, 47, 0, 0.1); /* Subtle shadow for depth */
      transition: all 0.3s ease; /* Smooth transition for interactive effects */
      position: relative; /* For positioning pseudo-elements */
      overflow: hidden; /* Ensures the gradient background doesn't overflow */
    }
    
    .btn-icon-container {
      perspective: 3000px; /* Adds perspective to the container to enhance the 3D effect */
    }
    
    .btn-icon {
      width: 6rem;
      /*Adjustwidthifneeded*/height: auto;
      /*Maintainaspectratio*/display: inline-block;
      vertical-align: middle;
      transition: transform 0.6s ease;
      /*Smoothtransitionfortheflip*/transform-style: preserve-3d;
      -webkit-transition: transform 0.6s ease;
      -moz-transition: transform 0.6s ease;
      -ms-transition: transform 0.6s ease;
      -o-transition: transform 0.6s ease;
    }
    
    .btn-icon:hover {
      transform: rotateY(180deg); /* Flip 180 degrees on the Y-axis */
    }
    
    
    .btn-primary {
      background: var(--bittersweet);
      border-color: var(--bittersweet);
    }
    
    .btn-primary:hover,
    .btn-primary:focus {
      background: linear-gradient(45deg, hsl(2, 90%, 70%), hsl(21, 100%, 50%)); /* Gradient background on hover */
      color: var(--white);
      border-color: hsl(2, 90%, 60%);
      box-shadow: 0 8px 16px rgba(255, 60, 0, 0.653); /* More pronounced shadow on hover */
      transform: translateY(-2px); /* Slight lift effect */
    }
    
    .btn-primary::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 0;
      height: 100%;
      background: rgba(255, 255, 255, 0.3); /* Light overlay effect */
      transition: all 0.3s ease;
    }
    
    .btn-primary:hover::after {
      width: 100%;
    }
    
    .btn-secondary {
      background: hsla(0, 0%, 100%, 0.1);
      color: var(--bittersweet); /* Match text color with button border color */
      border: 1px solid var(--bittersweet); /* Add border for secondary buttons */
    }
    
    .btn-secondary:hover,
    .btn-secondary:focus {
      background: hsla(0, 0%, 100%, 0.2); /* Lighten background on hover/focus */
      color: var(--bittersweet);
      border-color: var(--bittersweet);
      box-shadow: 0 8px 16px rgba(255, 60, 0, 0.653); /* Enhanced shadow on hover/focus */
      transform: scale(1.05); /* Slightly enlarge the button on hover */
    }
    
    .btn-secondary::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 0;
      height: 100%;
      background: rgba(0, 0, 0, 0.1); /* Light overlay effect */
      transition: all 0.3s ease;
    }
    
    .btn-secondary:hover::after {
      width: 100%;
    }
    
    
  
    .callbutton {
      font-size: var(--fs-6);
      text-transform: uppercase;
      font-weight: var(--fw-600);
      padding: 12px 32px;
      border: none;
      border-radius: 8px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      background: var(--bittersweet);
      color: var(--white);
      text-decoration: none;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      cursor: pointer;
  }
  
  .callbutton .btn-icon {
      width: 18px;
      height: auto;
      display: inline-block;
      vertical-align: middle;
  }
  
  .callbutton:hover,
  .callbutton:focus {
      background: linear-gradient(45deg, hsl(2, 90%, 70%), hsl(21, 90%, 50%));
      color: var(--white);
      border-color: hsl(2, 90%, 60%);
      box-shadow: 0 8px 16px rgba(255, 77, 0, 0.434);
      transform: translateY(-2px);
  }
  
  .callbutton::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 0;
      height: 100%;
      background: rgba(255, 255, 255, 0.3);
      transition: all 0.3s ease;
  }
  
  .callbutton:hover::after {
      width: 100%;
  }


.social-button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: black;
  padding: 10px;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  color: black;
  font-family: var(--ff-poppins), sans-serif;
  font-size: 16px;
  cursor: pointer;
  position: fixed;
  right: -0.5rem;
 /*  margin-bottom: 10px; */
  transition: width 0.5s ease-in-out, background-color 0.5s ease-in-out;
  overflow: hidden;
  z-index: 5;
}

.social-button img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  transition: transform 0.3s ease-in-out; /* Add transition for rotation */
}

.social-button span {
  opacity: 0;
  white-space: nowrap;
  transition: opacity 0.3s ease-in-out;
}

.social-button.map {
  bottom: 60px;
  border: 1px solid var(--bittersweet);
}

.social-button.skype {
  bottom: 120px;
  border: 1px solid var(--bittersweet);
}

.social-button.linkedin {
  bottom: 180px;
  border: 1px solid var(--bittersweet);
}

.social-button.whatsapp {
  bottom: 240px;
  border: 1px solid var(--bittersweet);
}

.social-button:hover {
  width: 160px;
  background-color: var(--white);
  box-shadow: 0 8px 16px rgba(255, 60, 0, 0.653);;
}

.social-button:hover img {
  transform: rotate(360deg); /* Rotate icon 360 degrees on hover */
}

.social-button:hover span {
  opacity: 1;
}
/* Hide social buttons on mobile screens (max-width: 768px) */
@media screen and (max-width: 768px) {
  .social-button {
    display: none;
  }
}
  
  
  /*-----------------------------------*\ 
   * #HEADER
  \*-----------------------------------*/
  
  .top-bar-container {
    margin-bottom: 30px;
    animation: fade-in 1.5s ease-in-out;
   
    -webkit-animation: fade-in 1.5s ease-in-out;
  }
  
  .top-bar {
    background-color: #1c1b29; /* Dark background */
    color: #fff;
    padding: 10px 65px; /* Adjust padding for better alignment */
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-size: 14px; /* Adjust font size for better readability */
    opacity: 0; /* Initially hidden */
    animation: fade-in 1.5s ease-in-out forwards; /* Apply fade-in effect */
  }
  
  .contact-info {
    display: flex;
    gap: 30px; /* Increase gap for more spacing */
    align-items: center;
    opacity: 0; /* Initially hidden */
    animation: fade-in 2s ease-in-out forwards 0.5s; /* Delay for staggered effect */
  }
  
  .contact-info .phone, .contact-info .email {
    display: flex;
    align-items: center;
    gap: 8px; /* Slightly increase the gap */
  }
  
  .contact-info i {
    color: var(--bittersweet); /* Red-orange icon color */
  }
  
  .social-icons {
    display: flex;
    gap: 20px;
    opacity: 0;
    animation: fade-in 1s ease-in-out forwards 1s;
    -webkit-animation: fade-in 1s ease-in-out forwards 1s;
  }
  
  .social-icon {
    background-color: #fff;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--bittersweet);
    opacity: 0; /* Initially hidden */
    animation: fade-in 2s ease-in-out forwards 1.2s; /* Delay for staggered effect */
  }
  
  .social-icon {
    position: relative; /* Required for the ::after pseudo-element */
    transition: all 0.3s ease; /* Smooth transition */
  }
  
  .social-icon:hover {
    background: linear-gradient(45deg,hsl(2, 90%, 70%), hsl(21, 100%, 50%)); /* Gradient background on hover */
    color: var(--white);
    box-shadow: 0 8px 16px rgba(255, 60, 0, 0.653); /* More pronounced shadow on hover */
    transform: translateY(-2px); /* Slight lift effect */
  }
  
  .social-icon::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    /*Lightoverlayeffect*/transition: all 0.3s ease;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
  }
  
  .social-icon:hover::after {
    width: 100%;
  }
  
  /* Phone and Email hover effects */
  .phone:hover, .email:hover {
    color: #ff4500;
    transform: translateY(-2px); /* Lift effect */
  }
  
  .phone i:hover, .email i:hover {
    color: #fff;
    transform: translateY(-2px); /* Lift effect on icon */
  }
  
  /* Adding shadow effect on phone and email hover */
  .phone:hover, .email:hover {
    box-shadow: 0 8px 16px rgba(255, 60, 0, 0.653); /* Similar shadow effect */
  }
  
  
  /* Keyframes for fade-in effect */
  @keyframes fade-in {
    0% {
      opacity: 0;
      transform: translateY(20px); /* Start slightly below */
    }
    100% {
      opacity: 1;
      transform: translateY(0); /* End in place */
    }
  }

  /* Media Queries */

/* Small Devices (phones) */
@media (max-width: 767px) {
  .top-bar {
    flex-direction: column;
    padding: 10px;
    font-size: 12px; /* Smaller font for mobile */
  }

  .contact-info {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
    gap: 15px;
  }

  .social-icon {
    width: 30px;
    height: 30px;
  }
}

/* Tablets (768px to 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .top-bar {
    padding: 10px 40px; /* Adjust padding for tablets */
    font-size: 13px;
  }

  .social-icons {
    gap: 20px;
  }

  .social-icon {
    width: 32px;
    height: 32px;
  }

  .contact-info {
    gap: 25px;
  }
}

/* Large Screens (desktops and bigger monitors) */
@media (min-width: 1200px) {
  .top-bar {
    padding: 10px 80px; /* Increased padding for larger screens */
    font-size: 15px;
  }

  .contact-info {
    gap: 40px;
  }

  .social-icon {
    width: 40px;
    height: 40px;
  }
}
  
  header {
    position: relative;
    padding: 0px 0;
    z-index: 2;
  }
  
  header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  
  .navbar-menu-btn {
    font-size: 30px;
    padding: 5px;
  }
  
  .navbar {
    position: absolute;
    top: calc(100% - 15px);
    left: 15px;
    right: 15px;
    background: var(--maximum-yellow-red);
    max-height: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition);
    transform-origin: top;
    overflow: hidden;
  }
  
  .navbar.active {
    visibility: visible;
    pointer-events: all;
    max-height: 280px;
  }
  
  .navbar-list { padding: 10px; }
  
  .nav-item:not(:last-child) { border-bottom: 1px solid hsla(0, 0%, 100%, 0.2); }
  
  .nav-link {
    font-size: var(--fs-6);
    color: var(--royal-blue-dark);
    font-weight: var(--fw-600);
    padding: 15px 10px;
    opacity: 0;
    transition: opacity var(--transition), transform 0.3s ease, color 0.3s ease;
  }
  
  .nav-link:is(:hover, :focus) {
    background: linear-gradient(90deg, var(--oxford-blue) 50%, var(--bittersweet) 100%);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0px 4px 15px rgba(255, 70, 3, 0.411);
    border-radius: 5px ;
    -webkit-border-radius: 5px ;
    -moz-border-radius: 5px ;
    -ms-border-radius: 5px ;
    -o-border-radius: 5px ;
  }
  
  .navbar.active .nav-link {
    transition-delay: 0.2s;
    opacity: 1;
  }
  
  
  
  .navbar .btn-primary { display: none; }
  
  .logo {
    width: 200px; /* Set the desired width */
    height: auto;
  }
  
  /* Basic styles for the dropdown */
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  .dropdown-toggle {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .dropdown-toggle:hover {
    background-color: #45a049;
    transform: translateY(-2px); /* Slight lift on hover */
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2); /* Soft shadow on hover */
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 200px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    z-index: 1;
    opacity: 0;
    transform: translateY(10px); /* Start slightly below */
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s ease, padding-left 0.3s ease;
    border-radius: 5px;
  }
  
  .dropdown-content a:hover {
    background-color: #f1f1f1;
    padding-left: 20px; /* Slide text slightly on hover */
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0); /* Slide up into place */
  }
  
  .dropdown-content a:last-child {
    border-bottom: none;
    border-radius: 0 0 5px 5px;
  }
  

  
    /**
     * HEADER
     */
  
    .navbar-menu-btn { display: none; }
  
    .navbar {
      max-height: unset;
      visibility: visible;
      position: static;
      width: auto;
      background: none;
      pointer-events: all;
      overflow: visible;
      display: flex;
    }
  
    .navbar-list {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-right: 20px;
    }
  
    .nav-link {
      opacity: 1;
      padding: 0 15px;
    }
  
    .navbar .btn-primary { display: block; }

    
  
  /* Contact Form Popup Styles */
.contact-form-popup {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

.contact-form-popup.fade-out {
  opacity: 0;
}

/* Thank You Popup Styles */
.thank-you-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  opacity: 0;
  z-index: 1000;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  transform: translate(-50%, -60%); /* Start higher for the animation */
}

.thank-you-popup.fade-in {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.thank-you-popup.fade-out {
  opacity: 0;
  transform: translate(-50%, -60%);
}

/* Thank You Popup Content */
.thank-you-popup h2 {
  margin-bottom: 10px;
  color: var(--oxford-blue);
}

.thank-you-popup p {
  margin-bottom: 20px;
  color: var(--oxford-blue);
}

.close-thank-you-btn {
  background-color: #ff7300;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-left: 0rem;
}

.close-thank-you-btn:hover {
  background-color: #ff4000;
}

    
  
  
  
  
   