@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oooh+Baby&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Plus Jakarta Sans", serif;
  scroll-behavior: smooth;
}
:root {
  --primary-bg: #f4f6f8;       /* Light gray background for a clean look */
  --secondary-bg: #1e57a5;
  --hover-color: #146ebe;        /* Medium blue for interactive elements */
  --primary-color: #14234d;      /* Deep navy blue for branding and emphasis */
  --primary-rgb: 30, 58, 138;    /* RGB for navy blue */
  --primary-dark: #162e6d;       /* Darker navy for hover or contrast */
}

a {
  text-decoration: none;
  color: inherit;
}

h1 {
    color: var(--primary-color) !important;
}

.primary {
    color: var(--primary-color) !important;
}

ul,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
}

/* Text Selection Styles */
::selection {
  background-color: var(--secondary-bg);
  color: white;
}

::-moz-selection {
  background-color: var(--secondary-bg);
  color: white;
}

/* Breadcrumb */
.breadcrumb-section {
  background: url("./Img/breadcrumb.jpg") no-repeat center center;
  background-size: cover;
  padding: 30px 0;
  position: relative;
}

.breadcrumb-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: white;
}

.breadcrumb-item.active {
  color: white;
}

/* Header Section */
#header {
  background-color: var(--primary-dark) !important;
  padding: 0 !important;
}

#header #free-btn {
  background-color: var(--secondary-bg) !important;
  padding: 11px 10px 9px;
  color: white;
}

.nav-link {
    color: var(--primary-dark);
}

.navbar-nav a:hover {
  color: var(--secondary-bg) !important;
}

/* Carousel */
.hero-carousel {
  position: relative;
  height: 80vh;
}

.hero-slider .item {
  height: 80vh;
}

.hero-slider .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Custom navigation styles */
.hero-slider .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.5) !important;
  border-radius: 50% !important;
  color: #000 !important;
  font-size: 20px !important;
}

.hero-slider .owl-nav button:hover {
  background: rgba(255, 255, 255, 0.8) !important;
}

.hero-slider .owl-prev {
  left: 20px;
}

.hero-slider .owl-next {
  right: 20px;
}

/* Custom dots styles */
.hero-slider .owl-dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
}

.hero-slider .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px;
  background: rgba(255, 255, 255, 0.5) !important;
}

.hero-slider .owl-dot.active span {
  background: #fff !important;
}

.hero-carousel .item {
  position: relative;
}

.carousel-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
  width: 100%;
  padding: 0 15px;
}

.carousel-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.carousel-btn {
  display: inline-block;
  padding: 15px 30px;
  background-color: var(--primary-dark);
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: normal;
  transition: background-color 0.3s ease;
}

.carousel-btn:hover {
  background-color: var(--hover-color);
  color: white;
}

/* Add a dark overlay to make text more readable */
.hero-carousel .item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

/* Feature Card Section */
.card-section {
  margin-top: -100px;
}

.vertical-line {
  width: 2px;
  height: 50px;
  background-color: var(--primary-bg);
  margin: 10px 0;
}

.card-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
}

.feature-card {
  background-color: var(--primary-color);
  padding: 30px;
  height: 250px;
  /* border-radius: 5px; */
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  z-index: 10;
}

.feature-card:hover {
  background-color: var(--hover-color);
  transform: translateY(-5px);
}

.feature-card:hover h3,
.feature-card:hover p,
.feature-card:hover i {
  color: #fff;
}

.feature-card:hover .vertical-line {
  background-color: #fff;
}

.feature-card h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.feature-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
  transition: color 0.3s ease;
}

.feature-card i {
  color: var(--hover-bg);
  font-size: 28px;
  transition: color 0.3s ease;
}

.card2 {
  background-color: var(--secondary-bg);
  color: white;
}

/* process section */
.process-badge {
  background-color: var(--secondary-bg);
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.process-subtitle {
  max-width: 600px;
  margin: 0 auto !important;
  font-size: 1.1rem;
  color: var(--primary-bg);
}

.process-card {
  background:  #ffffff;
  padding: 2rem;
  border-radius: 15px;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 128, 0, 0.1);
  height: 100%;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px !important;
}

.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--hover-color, #8d6e63);
}

.process-icon {
  position: relative;
  width: 80px;
  height: 80px;
  background: var(--primary-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--hover-color);
  transition: all 0.3s ease;
}

.process-card:hover .process-icon {
  background: var(--hover-color);
  color: white;
}

.process-number {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--hover-color);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
}

.process-card h3 {
  color: var(--primary-dark);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.process-card p {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .process-card {
    padding: 1.5rem;
  }

  .process-icon {
    width: 60px;
    height: 60px;
  }

  .process-card h3 {
    font-size: 1.1rem;
  }

  .process-card p {
    font-size: 0.9rem;
  }
}

/* About Section */
#title {
  border-color: var(--secondary-bg) !important;
}

#title h3 {
  color: var(--primary-dark);
}

.about-thaught {
  color: var(--primary-dark);
  font-family: "Oooh Baby", serif;
  font-weight: 400;
}

.about-cta {
  color: var(--primary-dark);
}

.about-cta a {
  border-color: var(--primary-dark) !important;
}

.cta {
  color: var(--primary-dark);
}

/* Stats Section */
#stats-section {
  background-image: url("/Img/accountant-bg.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* What we do section */
.section-title h5 {
  color: var(--hover-color);
  letter-spacing: 2px;
  font-weight: bold;
}

.section-title h2 {
  margin-bottom: 20px;
  color: var(--primary-dark);
}

.title-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  /* margin: 0 auto; */
}

.title-divider span {
  width: 60px;
  height: 3px;
  background-color: var(--hover-color);
  position: relative;
}

#card-why > div {
  background-color: #fff;
  color: var(--primary-bg);
  padding: 20px;
  border: 1px solid var(--hover-color);
  border-radius: 8px;
  box-shadow: 0 0 15px var(--hover-color);
  transition: all 0.4s ease-out;
}

#card-why > div:hover {
  transform: translateY(-5px);
  background-color: var(--hover-color);
  color: white;
}

/* Contact Section */
#contact-section {
  background-image: url("/Img/bg3.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contact-form {
  background-color: white;
  padding: 20px;
  border: 2px solid var(--hover-color);
  border-radius: 10px;
}

.feature-box {
  background-color: var(--secondary-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  min-height: 150px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  overflow: hidden;
}

.feature-box:hover {
  background-color: var(--hover-color);
  transform: translateY(-5px);
}

.bg-number {
  position: absolute;
  font-size: 120px;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.1);
  bottom: -20px;
  right: 10px;
  line-height: 1;
}

.feature-box h3 {
  position: relative;
  z-index: 1;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

/* Team Section Styles */
.team-member {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin: 10px;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.member-img {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.member-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.member-info h4 {
  color: #333;
  margin-bottom: 5px;
  font-weight: 600;
}

.member-social a {
  color: var(--primary-color);
  margin: 0 8px;
  font-size: 18px;
  transition: all 0.3s ease;
}

.member-social a:hover {
  color: var(--primary-dark);
}

/* Owl Carousel Custom Navigation */
.team-carousel .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50% !important;
  background: var(--primary-color) !important;
  color: white !important;
  font-size: 20px !important;
}

.team-carousel .owl-nav button.owl-prev {
  left: -50px;
}

.team-carousel .owl-nav button.owl-next {
  right: -50px;
}

.team-carousel .owl-nav button:hover {
  background: var(--primary-dark) !important;
}

/* Footer */
#footer {
  background-image: url("/Img/footer-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.social-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all 0.4s ease-out;
}

.social-icon:hover {
  background-color: var(--hover-color) !important;
}

.social-icon:hover i {
  color: white;
}

.social-icon i {
  color: var(--hover-color);
}

/* Contact Page Styles */

.contact-info-box {
  background: var(--primary-bg);
  transition: all 0.3s ease;
  border-radius: 5px;
}

.contact-info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.contact-info-box i {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.contact-form .form-control {
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(var(--primary-rgb), 0.25);
}

.map-container {
  min-height: 450px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  min-height: 450px;
}

/* Contact Form Button Hover Effect */
.contact-form .carousel-btn:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.3);
}

/* Contact Info Box Icon Animation */
.contact-info-box i {
  transition: transform 0.3s ease;
}

.contact-info-box:hover i {
  transform: scale(1.2);
}

/* Form Input Placeholder Styles */
.contact-form ::placeholder {
  color: #999;
  font-size: 0.9rem;
}

/* Custom Scrollbar for Textarea */
.contact-form textarea::-webkit-scrollbar {
  width: 8px;
}

.contact-form textarea::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.contact-form textarea::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

.contact-form textarea::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* Service Page Styles */
.service-card {
  background: var(--primary-dark);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-icon {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--primary-bg) !important;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.service-list li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
  color: var(--primary-bg);
}

.service-list li:before {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-bg);
}

.service-link {
  color: var(--primary-bg);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: var(--hover-color);
}

.why-choose-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
}

.why-choose-points h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

/* about page  */
/* Accordion Section */
.accordion-button {
  font-weight: 600;
  color: #fff;
  background-color: var(--primary-dark);
}

.accordion-button:not(.collapsed) {
  color: #fff;
  background-color: var(--secondary-bg);
}

.accordion-button::after {
  filter: brightness(0) invert(1);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.125);
}

.accordion-item {
  border: 1px solid rgba(0, 0, 0, 0.125);
  margin-bottom: 10px;
}

.accordion-body {
  padding: 1.5rem;
  color: #666;
}

.accordion-body li {
  position: relative;
  padding-left: 20px;
}

.accordion-body li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-bg);
}

/* Service Detail Page Styles */
.service-detail-section {
  background-color: #f8f9fa;
}

.service-image img {
  width: 100%;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.service-image img:hover {
  transform: scale(1.02);
}

.feature-item {
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon i {
  font-size: 24px;
  color: var(--primary-color);
}

.feature-content h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.process-steps {
  position: relative;
}

.step {
  padding: 30px;
  background: white;
  border-radius: 8px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.step-number {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.sidebar-card {
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .card-section {
    margin-top: 0;
  }

  .breadcrumb-section {
    padding: 50px 0;
  }

  .contact-info-box {
    margin-bottom: 1.5rem;
  }

  .map-container {
    margin-top: 2rem;
    min-height: 300px;
  }

  .map-container iframe {
    min-height: 300px;
  }

  .service-card {
    padding: 1.5rem;
  }

  .why-choose-points {
    margin-top: 2rem;
  }

  .team-carousel .owl-nav {
    display: none;
  }

  .hero-slider .owl-nav {
    display: none;
  }

  .carousel-content h1 {
    font-size: 2rem;
  }

  .carousel-content p {
    font-size: 1rem;
  }

  .feature-item {
    margin-bottom: 20px;
  }

  .sidebar-card {
    margin-top: 30px;
  }
}

/* Career Page Styles */
.benefit-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  font-size: 2.5rem;
  color: var(--hover-color);
}

.benefit-card h4 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.job-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  padding: 25px;
  height: 100%;
  transition: all 0.3s ease;
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.job-header h3 {
  color: var(--primary-dark);
  margin: 0;
  font-size: 1.25rem;
}

.job-details p {
  color: #666;
  margin-bottom: 0.5rem;
}

.job-requirements {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.job-requirements li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: #666;
}

.job-requirements li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--hover-color);
}

.career-form .form-control,
.career-form .form-select {
  padding: 0.75rem 1rem;
  border-color: #ddd;
}

.career-form .form-control:focus,
.career-form .form-select:focus {
  border-color: var(--hover-color);
  box-shadow: 0 0 0 0.2rem rgba(141, 110, 99, 0.25);
}
