/* Default dropdown items */
  .dropdown-menu .dropdown-item {
    color: #333; /* text color */
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  /* On hover */
  .dropdown-menu .dropdown-item:hover,
  .dropdown-menu .dropdown-item:focus {
    background-color: #CA822E; /* your desired color */
    color: #fff; /* text color on hover */
  }

  /* Optional: keep the dropdown menu background white */
  .dropdown-menu {
    background-color: #fff;
  }

#service-cards .card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  box-shadow: none;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), 
              box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
              background-color 0.4s ease;
}

#service-cards .card:hover {
  background-color: #ffffff;
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.2); /* slightly bigger, softer shadow */
  transform: translateY(-8px); /* subtle but noticeable lift */
}

#service-cards .card .read-more {
  display: none;
}

#service-cards .card:hover .read-more {
  display: inline-block;
}

.read-more {
  color: #CA822E;              /* Text color */
  border-color: #CA822E;       /* Border color */
}

.read-more:hover {
  background-color: #CA822E;   /* Fill on hover */
  color: white;                /* Text color on hover */
  border-color: #CA822E;       /* Keep border color consistent */
}

/* Plain text styling */
#blogs-readmore a {
  text-decoration: none;
  color: #004e8e; /* Default color */
  transition: color 0.3s;
  font-weight: 500;
}

/* Arrow styling and transition */
#blogs-readmore .arrow {
  display: inline-block;
  margin-left: 5px;
  transition: transform 0.3s;
}

/* Change color and animate arrow on card hover */
.card-hover:hover #blogs-readmore a {
  color: #CA822E; /* New color on hover */
}

.card-hover:hover #blogs-readmore .arrow {
  transform: translateX(5px); /* Moves arrow slightly to the right */
}


.btn-connect {
  color: #CA822E;
  font-weight: 600;
  background-color: #fff;
  transition: all 0.3s ease;
}

.btn-connect:hover {
  background-color: #CA822E;
  color: #fff;
  border-color: #CA822E;
  transform: scale(1.05);
}


/* Accordion Styles */

  /* Default collapsed state */
  .accordion-button {
    background-color: #fff; /* white background */
    color: #333; /* default text color */
    border: 1px solid #ddd; /* optional border */
    box-shadow: none; /* remove default shadow */
    position: relative;
  }

  /* Remove the blue focus outline */
  .accordion-button:focus {
    box-shadow: none;
  }

  /* On hover */
  .accordion-button:hover {
    background-color: #f9f9f9; /* light gray */
    color: #CA822E; /* hover text color */
  }

  /* When expanded */
  .accordion-button:not(.collapsed) {
    background-color: #CA822E; /* active background */
    color: #fff; /* active text color */
    border-color: #CA822E; /* optional border same as background */
  }

  /* Change arrow icon color */
  .accordion-button::after {
    filter: invert(50%) sepia(90%) saturate(500%) hue-rotate(20deg); /* optional for collapsed color */
    transition: transform 0.3s ease, filter 0.3s ease;
  }

  /* Arrow color when expanded */
  .accordion-button:not(.collapsed)::after {
    filter: invert(100%); /* white arrow when active */
  }

  /* Accordion body */
  .accordion-body {
    font-size: 14px;
    color: #555;
    border-top: 1px solid #ddd; /* optional divider */
  }



/* Footer */
.company-links a {
  color: #212529; /* Default dark color */
  transition: color 0.3s ease;
}

.company-links a:hover {
  color: #CA822E; /* Hover color */
}

.company-links .active-link {
  color: #CA822E; /* “Home” stays highlighted */
}


  .services-list a {
    color: #000; /* default color */
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .services-list a:hover {
    color: #CA822E; /* color on hover */
  }


  .icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff; /* white circle */
    color: #CA822E; /* icon color */
    border-radius: 50%; /* makes it circular */
    width: 20px; /* circle size */
    height: 20px;
    font-size: 1rem; /* icon size */
    margin-right: 5px; /* spacing from text */
  }


  .footer-links a {
    color: #555; /* default color */
    text-decoration: none;
    transition: color 0.3s ease; /* smooth transition */
  }

  .footer-links a:hover {
    color: #CA822E; /* color on hover */
    text-decoration: underline; /* optional */
  }

/* footer end */



/* service pages */

.page-header-image img {
    transition: transform 10s ease;
  }
  .page-header-image:hover img {
    transform: scale(1.20); /* slight zoom on hover */
  }



  /* blogs things */

  /* Default link style */
.toc-link {
    color: #555; /* Default inactive color */
    text-decoration: none;
    display: block; /* Make the link fill the list item */
    padding: 2px 0; /* Add minor padding for better click/readability */
    transition: color 0.2s; /* Smooth transition */
}

/* Active link style (your brand color) */
.toc-link.toc-active {
    color: #CA822E; /* Your active brand color */
    font-weight: bold;
}



/* In the about us page */
.expertise-right {
  position: relative;
}

.animation-wrapper {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  border-left: 2px solid #111;
}

#bouncingBalls {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.expertise-text {
  position: relative;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 15px;
}


.features-section {
  background: #fff;
  padding: 100px 0;
}

.features-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: auto;
}

.feature-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  text-align: center;
  padding: 40px 30px;
  width: 320px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.06);
  transition: all 0.4s ease;
  position: relative;
}

.feature-card .icon {
  font-size: 40px;
  color: #CA822E;
  margin-bottom: 20px;
  transition: color 0.4s ease, transform 0.4s ease;
}

.feature-card h3 {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* ✨ Hover Effects */
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 120, 255, 0.15);
  border-color: rgba(0, 120, 255, 0.2);
}

.feature-card:hover .icon {
  color: #00bfff;
  transform: scale(1.1);
}


/* carrer page */
.join-us {
  position: relative;
  width: 100%;
  height: 400px;
  background: url('img/carrer-main.png') center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

.join-overlay {
  background: rgba(0, 0, 0, 0.55);
  padding: 60px;
  border-radius: 16px;
  backdrop-filter: blur(3px);
}

.join-us h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.join-us p {
  max-width: 700px;
  margin: 0 auto 25px;
  line-height: 1.6;
  font-size: 1rem;
  color: #e0e0e0;
}

.join-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.btn {
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn.primary {
  background-color: #d47a1e;
  color: #fff;
}

.btn.primary:hover {
  background-color: transparent;
  border-color: #d47a1e;
  color: #d47a1e;
}

.btn.secondary {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.btn.secondary:hover {
  background-color: #fff;
  color: #333;
}


.benefits {
  padding: 80px 10%;
  font-family: 'Poppins', sans-serif;
  color: #1a1a1a;
  background-color: #fff;
}

.benefits-container {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: flex-start;
  justify-content: space-between;
}

.benefits-text {
  flex: 1 1 40%;
}

.benefits-text h5 {
  color: #5e6a77;
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.benefits-text h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.benefits-text p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.benefits-grid {
  flex: 1 1 50%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.benefit-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

.benefit-card .icon {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-size: 20px;
  color: #3b5998;
}

.benefit-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

.career-section {
  padding: 80px 10%;
  background-color: #fafafa;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.career-section h5 {
  color: #666;
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.career-section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0d1b2a;
}

.career-section p {
  max-width: 600px;
  margin: 0 auto 40px;
  color: #666;
  font-size: 0.95rem;
}

.career-content {
  display: flex;
  gap: 60px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}

.career-categories {
  flex: 1 1 220px;
  text-align: left;
}

.career-categories ul {
  list-style: none;
  padding: 0;
}

.career-categories li {
  font-weight: 600;
  font-size: 0.95rem;
  margin: 18px 0;
  cursor: pointer;
  transition: color 0.3s;
}

.career-categories li:hover {
  color: #1e73e8;
}

.career-categories li.active {
  color: #CA822E;
}

.career-list {
  flex: 1 1 600px;
}

/* === CAREER CARD DESIGN === */
.career-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 20px 25px;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  cursor: pointer;
}

.career-info h4 {
  font-size: 1rem;
  margin: 0 0 4px;
  color: #222;
  font-weight: 600;
  transition: color 0.3s ease;
}

.career-info p {
  font-size: 0.85rem;
  color: inherit;
}

.career-deadline span {
  font-size: 0.75rem;
  color: #999;
  transition: color 0.3s ease;
}

.career-deadline strong {
  display: block;
  font-size: 0.9rem;
  margin-top: 3px;
  color: #0d1b2a;
  transition: color 0.3s ease;
}

/* === ARROW STYLING === */
.career-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;
  text-decoration: none;
  transition: 0.3s;
  color: #CA822E;
  font-size: 16px;
  border: 1px solid transparent;
}

/* Hover on arrow directly */
.arrow-link:hover {
  background: #fff;
  color: #CA822E;
  border: 1px solid #fff;
  transform: translateX(5px);
}

/* === HOVER EFFECT ON ENTIRE CARD === */
.career-card:hover {
  background-color: #CA822E;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(202, 130, 46, 0.3);
}

.career-card:hover .career-info h4,
.career-card:hover .career-deadline span,
.career-card:hover .career-deadline strong {
  color: #fff;
}

/* Arrow automatically changes when card hovered */
.career-card:hover .arrow-link {
  background: #fff;
  color: #2ea0ca;
  border-radius: 8px; /* Rounded rectangle instead of circle */
  transform: translateX(5px);
}

#applyButtonCarrer {
  display: inline-block;
  padding: 10px 22px;
  background-color: #fff;
  color: #b76f1c;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

#applyButtonCarrer:hover {
  background-color: #b76f1c;
  color: #fff;
  transform: translateY(-2px);
}



/* carrer 2nd page */
.job-detail-section {
  font-family: 'Poppins', sans-serif;
  background: #fff;
  padding: 60px 10%;
  color: #222;
}

.job-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

/* LEFT SIDE */
.job-content {
  flex: 2;
  min-width: 60%;
}

.job-content h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 20px;
}

.job-content h3 {
  margin-top: 30px;
  margin-bottom: 10px;
  color: #0d1b2a;
  font-size: 1.2rem;
  font-weight: 600;
}

.job-content ul {
  list-style: disc;
  padding-left: 20px;
  color: #333;
  line-height: 1.7;
}

/* RIGHT SIDEBAR */
.job-sidebar {
  flex: 1;
  min-width: 280px;
  background: #fafafa;
  padding: 25px 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: sticky;
  top: 100px;
}

#applyButtonCarrer {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 12px 0;
  background-color: #b76f1c;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

#applyButtonCarrer:hover {
  background-color: #fff;
  color: #b76f1c;
  border: 1px solid #b76f1c;
  transform: translateY(-2px);
}

.job-summary h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.job-summary ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.job-summary ul li {
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.job-summary ul li i {
  color: #b76f1c;
  font-size: 1rem;
  margin-top: 3px;
}

.view-all {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.9rem;
  color: #b76f1c;
  text-decoration: underline;
  transition: color 0.3s;
}

.view-all:hover {
  color: #563301;
}



/* conatct us */
/* Contact Hero Section */
.contact-hero {
  position: relative;
  width: 100%;
  height: 80vh;
  background: linear-gradient(135deg, #b76f1c 0%, #563301 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 0 10%;
  font-family: 'Poppins', sans-serif;
}

/* Overlay */
.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(2px);
  z-index: 1;
}

/* Content */
.contact-hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  animation: fadeUp 1s ease forwards;
}

.contact-hero-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.contact-hero-content p {
  font-size: 1.05rem;
  color: #f5f5f5;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* Buttons */
.contact-hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.contact-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-btn.primary {
  background-color: #fff;
  color: #b76f1c;
}

.contact-btn.primary:hover {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.contact-btn.outline {
  border: 2px solid #fff;
  color: #fff;
}

.contact-btn.outline:hover {
  background-color: #fff;
  color: #b76f1c;
}

/* Floating circles animation */
.floating-circles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.floating-circles span {
  position: absolute;
  display: block;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  animation: floatUp 12s infinite ease-in-out;
}

.floating-circles span:nth-child(1) { left: 20%; width: 60px; height: 60px; animation-delay: 0s; }
.floating-circles span:nth-child(2) { left: 40%; width: 30px; height: 30px; animation-delay: 2s; }
.floating-circles span:nth-child(3) { left: 60%; width: 80px; height: 80px; animation-delay: 4s; }
.floating-circles span:nth-child(4) { left: 75%; width: 50px; height: 50px; animation-delay: 6s; }
.floating-circles span:nth-child(5) { left: 90%; width: 40px; height: 40px; animation-delay: 8s; }

/* Animations */
@keyframes floatUp {
  0% { transform: translateY(100vh) scale(0.8); opacity: 0.4; }
  50% { opacity: 1; transform: translateY(50vh) scale(1.1); }
  100% { transform: translateY(-10vh) scale(0.9); opacity: 0; }
}

@keyframes fadeUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
  .contact-hero-content h1 {
    font-size: 2rem;
  }

  .contact-hero-content p {
    font-size: 0.95rem;
  }

  .contact-hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
}


/* contact-form */
.contact-section {
  padding: 60px 0;
  background-color: #fff;
  font-family: "Poppins", sans-serif;
}

.contact-container {
  display: flex;
  width: 85%;
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* LEFT SIDE */
.contact-info {
  flex: 1;
  background: #4a2900;
  color: #fff;
  padding: 40px;
  position: relative;
}

.contact-info h2 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.contact-info p {
  font-size: 0.95rem;
  margin-bottom: 30px;
  opacity: 0.85;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
}

.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.info-list i {
  font-size: 1.1rem;
  margin-top: 4px;
  color: #f3c680;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 18px;
  position: absolute;
  bottom: 40px;
}

.social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #b76f1c;
  border-radius: 50%;
  color: #fff;
  transition: all 0.3s ease;
}

.social:hover {
  background: #fff;
  color: #b76f1c;
}

/* RIGHT SIDE */
.contact-form {
  flex: 2;
  padding: 40px 50px;
  background-color: #fff;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: #333;
}

.form-group input,
.form-group textarea {
  border: none;
  border-bottom: 1.5px solid #ddd;
  padding: 8px 0;
  font-size: 0.95rem;
  outline: none;
  transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #b76f1c;
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 5px;
}

.radio-group label {
  font-size: 0.9rem;
  color: #555;
}

textarea {
  resize: none;
  height: 100px;
}

.send-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 28px;
  background-color: #b76f1c;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

.send-btn:hover {
  background-color: #4a2900;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-info {
    text-align: center;
  }

  .social-icons {
    position: static;
    justify-content: center;
    margin-top: 20px;
  }
}


.map-full-section {
  width: 100%;
  height: 500px; /* adjust height as needed */
  position: relative;
  overflow: hidden;
  margin-top: 50px;
}

.map-wrapper {
  width: 100%;
  height: 100%;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0; /* you can set 10px if you want rounded corners */
  display: block;
}


.contact-info-card {
  position: relative;
  background-color: #4a2600;
  color: #fff;
  border-radius: 10px;
  padding: 40px 30px;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

/* Decorative semicircles */
.contact-info-card::before,
.contact-info-card::after {
  content: '';
  position: absolute;
  bottom: -50px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  z-index: 0;
}

.contact-info-card::before {
  width: 160px;
  height: 160px;
  right: 80px;
}

.contact-info-card::after {
  width: 100px;
  height: 100px;
  right: 20px;
}

/* Text & content */
.contact-info-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-info-card p {
  font-size: 0.9rem;
  color: #ddd;
  margin-bottom: 25px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 0.95rem;
  z-index: 1;
  position: relative;
}

.contact-item i {
  color: #f5b562;
  font-size: 1rem;
  margin-top: 3px;
}

.social-icons {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  z-index: 1;
  position: relative;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background-color: #b76f1c;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: #fff;
  color: #b76f1c;
  transform: translateY(-3px);
}


@media (max-width: 768px) {
  #service-cards .card .read-more {
    display: inline-block !important; /* always visible on small screens */
  }
}
