:root {
    --primary: #0056b3;  /* Keeping your blue for accents */
    --secondary: #000000; /* Changed to black */
    --accent: #070707;    /* Keeping your orange accent */
    --light: #ffffff;     /* Changed to white */
    --dark: #000000;      /* Changed to black */
}

body {
  font-family: "Segoe UI", sans-serif;
  background-color: #fff;
  color: #000;
}

.nav-scroll {
  background: white;
  transition: top 0.4s, background 0.3s;
  position:relative;
  width: 100%;
  top: 0;
  z-index: 999;
  padding: 15px 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: 2rem;
  color: #fff;
}

.nav-link {
  color: #000;
  font-size: 1.2rem;
  margin-left: 20px;
}

.nav-link:hover {
  color: #ddd;
}

.btn-white {
  background-color: #fff;
  color: #000;
  border-radius: 25px;
  padding: 12px 28px;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
}

.btn-white:hover {
  background-color: #ddd;
  color: #000;
}

.hero-section {
  background: url("/assets/hero.webp") no-repeat center center/cover;
  height: 100vh;
 
}

.hero-section h1 {
  font-size: 4rem;
  font-weight: 500;
  
}

.hero-section p {
  font-size: 1.3rem;
  margin-top: 1.2rem;
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.3rem;
  }

  .hero-section p {
    font-size: 1rem;
  }

  .nav-link {
    margin-left: 0;
    margin-right: 15px;
  }
}

/* Mobile Nav Dropdown Background */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: #fff;
    padding: 15px;
  }

  .navbar-collapse .nav-link {
    color: #000;
    font-size: 1.2rem;
    margin: 10px 0;
  }

  .navbar-collapse .nav-link:hover {
    color: #333;
  }
}

/* ---------------------------------------------------------------------------------------------------- */

.choose-us-section {
  background-color: #fff;
  color: #000;
  padding: 60px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #000;
}

.choose-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  transition: all 0.3s ease;
  padding: 25px 20px;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.choose-card h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.choose-card p {
  font-size: 1rem;
  line-height: 1.6;
}

.choose-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .choose-card h3 {
    font-size: 1.5rem;
  }
}

/* -------------------------------------------------------------------------------------------- */

/* Contact Section Styles */
.contact-section {
  background-color: #fff;
  color: #000;
}

.contact-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  position: relative;
}

.contact-section .section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #000;
}

.contact-details h5 {
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-form {
  background-color: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
  font-weight: 600;
}

.form-control {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.form-control:focus {
  box-shadow: none;
  border-color: #000;
}

textarea.form-control {
  resize: none;
}

.contact-section .btn-primary {
  background-color: #000;
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.contact-section .btn-primary:hover {
  background-color: #333;
  transform: translateY(-3px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.choose-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #000;
  display: block;
  transition: transform 0.3s ease;
}

.choose-card:hover .choose-icon {
  transform: scale(1.2);
}

/* Optional: Add this if you want to change the hover effect colors */
.choose-card:hover .choose-icon {
  color: #333;
}

@media (max-width: 768px) {
  .contact-section .section-title {
    font-size: 2rem;
  }

  .contact-form {
    padding: 20px;
  }
}

/* ------------------------------------------------------------------------------- */
/* Team Section Styles */

.team-img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid gray;
  margin-bottom: 10px;
}
.team-icon {
  color: gray;
  text-decoration: none;
  margin-top: 8px;
  display: inline-block;
  font-size: 20px;
  border-radius: 50px;
}
.team-icon:hover {
  color: #084298;
}
.team-box {
  /* height: 400px; */
  /* border: 1px solid gray; */
  border-radius: 5px;
  margin-left: 20px;
  transition: all 0.3s ease-in-out;
  background-color: #fff;
  position: relative;
  z-index: 1;
}
.team-box:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  transform: translateY(-8px);
  border-color: transparent;
  z-index: 10;
}
@media (max-width: 800px) {
  .team-box {
    margin-top: 20px;
    margin: auto;
  }
}

/* ----------------------------------------------------------------------------- */
/* Optimized Footer Styling */
.footer-section {
  background-color: #111;
  color: #fff;
  padding: 70px 0 20px;
}

.footer-logo {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 15px;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #fff;
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-bottom-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s, padding 0.3s;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 5px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
}

.social-icons a:hover {
  background-color: #fff;
  color: #000;
  transform: translateY(-3px);
}

.footer-newsletter {
  margin-top: 15px;
}

.footer-newsletter .form-control {
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
}

.footer-newsletter .form-control::placeholder {
  color: #aaa;
}

.footer-newsletter .btn {
  padding: 0 15px;
}

.footer-divider {
  margin: 30px 0;
  border-color: rgba(255, 255, 255, 0.1);
}

.footer-bottom {
  padding-top: 10px;
}

.footer-bottom p {
  color: #aaa;
  font-size: 0.9rem;
  margin-bottom: 0;
}

.footer-bottom-links {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.9rem;
}

.footer-bottom-links a:hover {
  color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .footer-title {
    margin-top: 20px;
  }

  .footer-bottom-links {
    justify-content: center;
    margin-top: 15px;
  }
}

/* -------------------------------------------------------------------------------------------------------------- */

/* about us */
.about-section {
  padding: 80px 0;
  background: var(--light);
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 4px;
  background: var(--accent);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.section-header p {
  color: var(--dark);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h3 {
  font-size: 1.8rem;
  color: var(--secondary);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.about-text h3::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 3px;
  background: var(--accent);
  bottom: 0;
  left: 0;
}

.about-text p {
  color: var(--dark);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.highlight-box {
  background: #f8f9fa;
  border-left: 4px solid var(--accent);
  padding: 20px;
  margin: 30px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 0 4px 4px 0;
}

.values-list {
  list-style-type: none;
  margin: 25px 0;
  color: var(--accent);
}

.values-list li {
  padding: 10px 0;
  position: relative;
  padding-left: 35px;
  line-height: 1.6;
}

.values-list li::before {
  content: "▹";
  position: absolute;
  left: 10px;
  color: var(--accent);
  font-size: 1.2rem;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
  gap: 20px;
}

.stat-item {
  flex: 1;
  min-width: 150px;
  text-align: center;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 10px;
}

.stat-label {
  color: #666;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-image {
  flex: 1;
  min-width: 300px;
  position: sticky;
  top: 20px;
}

.about-image img {
  max-width: 100%;
  border-radius: 8px;
  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
  transition: transform 0.3s ease;
  padding-bottom: 5rem;
}

.about-image img:hover {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
  }

  .about-image {
    position: static;
    margin-top: 30px;
  }

  .section-header h2 {
    font-size: 2rem;
  }
}

/* ----------------------------------------------------------------------------------------------- */
.service_head{
    color: rgb(255, 255, 255);
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 900;
    font-size: 2.5;
}
.service-btn {
    background-color: #fff;
    color: #000;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    white-space: nowrap;
    cursor: pointer;
  }

  .service-btn:hover {
    background-color: #000;
    color: #fff;
    border-color: #fff;
  }

  .service-btn:hover i {
    color: #fff;
  }

  /* Optional: Fine-tune responsiveness for very small screens */
  @media (max-width: 360px) {
    .service-btn {
      width: 100%;
      justify-content: center;
    }
  }
  @media (min-width: 768px) {
    .custom-padding-lr {
      padding-left: 1cm;
      padding-right: 1cm;
    }
  }

/* cards of service */
 /* Custom Service CSS */
 .service-card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.15);
}

.service-img-container {
    height: 200px; /* Fixed height for all image containers */
    position: relative;
    overflow: hidden;
}

.service-body {
    padding: 20px;
    background: #fff;
    flex: 1; /* Makes card bodies equal height */
}
.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2) !important; /* Enhanced hover shadow */

}

.service-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 15px;
    margin: 0;
}

.service-body {
    padding: 20px;
    background: #fff;
}

@media (max-width: 767.98px) {
    .service-col {
        margin-bottom: 20px;
    }
}

/* map location */
/* Service Location Section */
.service-location {
    background-color: #f8f9fa;
}
.img-sharp {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: grayscale(80%) contrast(110%);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: high-quality;
    -ms-interpolation-mode: nearest-neighbor;
    transition: all 0.4s ease;
}


/* Image Effects */
.grayscale {
    transition: all 0.4s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hover-zoom:hover {
    transform: scale(1.03);
    /* filter: grayscale(30%); */
}

.location-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    min-height: 350px;
}

.location-overlay {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(0px);
    transition: all 0.3s ease;
}

.location-image:hover .location-overlay {
    background: rgba(0, 0, 0, 0.13);
}

.location-text {
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.location-subtext {
    font-size: 0.9rem;
    opacity: 0.9;
    max-width: 80%;
}

/* Accordion Styling */
.accordion-button {
    transition: all 0.3s ease;
    border: 1px solid #dee2e6 !important;
}

.accordion-button:not(.collapsed) {
    background-color: #f8f9fa !important;
    color: #0d6efd !important;
    box-shadow: none;
    border-bottom: 1px solid #dee2e6 !important;
}

.accordion-button:hover {
    background-color: #f8f9fa !important;
    color: #0d6efd !important;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: #dee2e6;
}

.accordion-body {
    border-left: 1px solid #dee2e6;
    border-right: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
    border-radius: 0 0 8px 8px;
}

.hover-country {
    transition: all 0.2s ease;
    border-radius: 6px;
}

.hover-country:hover {
    background-color: #e9ecef !important;
    transform: translateX(5px);
    color: #0d6efd !important;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .location-image {
        min-height: 300px;
        margin-bottom: 2rem;
    }
    
    .location-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 767.98px) {
    .location-image {
        min-height: 250px;
    }
    
    .location-overlay {
        padding: 1.5rem;
    }
    
    .location-text {
        font-size: 1.1rem;
    }
    
    .accordion-body ul {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 575.98px) {
    .location-content {
        padding: 1.5rem !important;
    }
    
    h2.display-5 {
        font-size: 2rem;
    }
}

/* --------------------------------------------------------------------------------------------- */
/* affilited section */
.partners-section {
  max-width: 100%;
  margin: 0px auto;
  padding: 0 20px;
  background-color: #fff;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
  font-weight: 600;
  color: #2c3e50;
  position: relative;
  padding-bottom: 15px;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #15252f, #fff);
  border-radius: 2px;
}

.logo-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 20px;
}

.logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 110px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  padding: 20px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.logo-wrapper img {
  max-width: 95%;
  max-height: 85%;
  object-fit: contain;
}

@media (max-width: 768px) {
  .logo-container {
      gap: 20px;
  }
  
  .logo-wrapper {
      width: 140px;
      height: 100px;
  }
  
  .section-title {
      font-size: 28px;
  }
}

@media (max-width: 480px) {
  .logo-container {
      gap: 15px;
  }
  
  .logo-wrapper {
      width: 120px;
      height: 90px;
      padding: 15px;
  }
  
  .section-title {
      font-size: 24px;
      margin-bottom: 30px;
  }
}


